* {
    box-sizing: border-box;
}

/* Hide scrollbar for Chrome, Safari and Opera */
*::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
* {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

html {
    margin: 0;
    padding: 0;
    font-size: 62.5%;
}

body {
    margin: 0;
    padding: 0;
    font-family: Economica;
    font-weight: 400;
    font-size: 2.8vh;
}

a, a:visited, a:active {
    text-decoration: none;
}

iframe {
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

/* HomeLink */
#homelink {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

#homelink img {
    width: 3.5vh;
}


/* Footer */

.footer {
  display: flex;
  justify-content: space-between;
  align-self: center;
  padding: 0 10%;
  font-size: 1.5vh;
}

.footer nav {
  display: flex;
  align-items: center;
}

.footer a,
.footer a:active,
.footer a:visited {
  color: var(--zindel-blue);
  padding: 1em 0;
}

.footer a.active {
  color: var(--zindel-gold);
}

.footer a::before {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  margin: 0 .25em 0 .5em;
  background-image: url('../images/button_home.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  mix-blend-mode: multiply;
}
