strong {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

html, body {
  font-family: "neuzeit-grotesk", sans-serif;
  font-weight: 300;
  font-style: normal;
  overflow: hidden;
  touch-action: manipulation;
}

.logo {
  position: fixed;
  top: 10vh;
  margin: 0 auto;
  display: block;
}

.icon {
  position: fixed;
  bottom: 9vh;
  display: block;
  margin: 0 auto;
}

.container-fluid {
  background-image: linear-gradient(140deg,#fbf8f6,#FFFFFF,#fbf8f6,#FFFFFF,#fbf8f6);
  background-size: 300%;
  animation: bganimation 15s infinite;
  overflow: hidden;
}

@keyframes bganimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 75% 50%;
  }
  100% {
    background-position: 0% 25%;
  }
}

.helix {
  transform: scale(1.3);
}

p a {
  color: #000;
  text-decoration: none;
}

p a:hover {
  /*color: #000;*/
  text-decoration: underline;
}

.icon {
  opacity: 0;
  transform: scale(1.3);
  animation: iconFadeIn 3s ease forwards;
}

@keyframes iconFadeIn {
  to {
    opacity: 1;
    transform: scale(1) translateZ(0);
  }
}

.helix {
  height: 100dvh;
  contain: paint;
}

