#click strong {
  font-family: "Pantasia";
  text-transform: uppercase;
}

#click {
  position: absolute;
  top: 0;
  width: 100vw;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.8;
  z-index: 0;
}
#click .cloud-wrapper {
  position: relative;
  width: 300vw;
  height: 100vh;
  min-height: 500px;
  padding-top: 50px;
  padding-bottom: 10vh;
  display: flex;
  flex-direction: row;
}
#click .cloud-wrapper a {
  position: absolute;
  transition: all linear 1s;
  display: flex;
  flex-direction: column;
  pointer-events: auto;
  cursor: pointer;
}
#click .cloud-wrapper a .text {
  text-align: center;
  width: 100%;
  max-width: 150px;
  white-space: pre-wrap;
  line-height: 95%;
  padding: 0.5rem;
}
#click .cloud-wrapper a:hover {
  color: #000;
  opacity: 1;
}
@media only screen and (max-width: 600px) {
  #click .cloud-wrapper {
    animation: marquee-click 180s linear infinite;
  }
}

.cloud-wrapper:hover a:not(:hover) {
  filter: blur(1.5px);
}

#clouds {
  position: absolute;
  width: 100vw;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.9;
  top: -40px;
  transition: opacity 5s linear;
  z-index: -2;
}

.cloud-wrapper {
  display: flex;
  flex-direction: row;
  width: auto;
  min-width: 300vw;
  transition: opacity 5s linear;
  animation: cloudy 460s linear infinite;
  padding-bottom: 10vh;
}
@media only screen and (max-width: 600px) {
  .cloud-wrapper {
    animation: cloudy 400s infinite;
  }
}

.cloud {
  font-size: 1.25rem;
  line-height: 120%;
  letter-spacing: 1.5px;
  flex-shrink: 0;
  text-align: left;
}
.cloud span {
  word-break: break-word;
  display: inline-block;
  letter-spacing: 1.5px;
}

#clouds.two {
  opacity: 0.4;
  top: 200px;
}
#clouds.two .cloud-wrapper {
  animation: cloudy 330s infinite;
}

#field {
  cursor: pointer;
}
#field [bee] {
  position: absolute;
}
#field [flower] {
  position: absolute;
  bottom: 0;
  display: none;
}

@keyframes cloudy {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  0.5% {
    opacity: 1;
  }
  30% {
    opacity: 0.95;
  }
  80% {
    opacity: 0.8;
  }
  98% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
    transform: translateX(-4500px);
  }
}
@keyframes marquee-click {
  0% {
    transform: translateX(10vw);
    opacity: 0;
  }
  0.5% {
    opacity: 0.8;
  }
  30% {
    opacity: 0.95;
  }
  80% {
    opacity: 0.8;
  }
  95% {
    opacity: 0;
  }
  100% {
    transform: translateX(-250vw);
  }
}

/*# sourceMappingURL=environment.css.map */
