.main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ---------- CONTENT ---------- */
.content {
  width: 100%;
  height: 100%;
  padding-top: 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
.content.reduced {
  width: 0;
  transition-duration: 800ms;
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}
.content .wrapper {
  margin: 0 auto;
  max-width: max-content;
  min-width: max-content;
  z-index: 10;
}
.content h1 {
  font-size: 5rem;
  line-height: 0.8em;
  margin-top: 10px;
}
.content h2 {
  font-size: 2.4rem;
  margin-top: 4px;
}

#left {
  background: linear-gradient(to top right, var(--primary) calc(50% - 1px), var(--secondary), var(--primary) calc(50% + 1px));
  color: var(--secondary);
}
#left #stake-container {
  position: absolute;
  bottom: -8rem;
  z-index: 1;
  display: flex;
  transform: translateX(-5%);
}
#left #stake-container #stake1 {
  position: relative;
  bottom: -4rem;
  left: 24rem;
}
#left #stake-container #stake2 {
  position: relative;
  animation-delay: 50ms;
}
#left #stake-container #stake3 {
  position: relative;
  right: 26rem;
  animation-delay: 90ms;
}
#left #stake-container .move {
  animation: moveStakes 800ms ease;
}

#right {
  background: linear-gradient(to top left, var(--secondary) calc(50% - 1px), var(--primary), var(--secondary) calc(50% + 1px));
  color: var(--primary);
}
#right #dandelion {
  position: absolute;
  bottom: -1rem;
}
#right #dandelion img:hover {
  filter: blur(5px);
  transition-duration: 1000ms;
}

/* ---------- ANIMATION ---------- */
@keyframes moveStakes {
  0% {
    transform: translate(0%, 0%);
  }
  60% {
    transform: translate(30%, -40%);
  }
  80% {
    transform: translate(30%, -40%);
  }
  100% {
    transform: translate(0%, 0%);
  }
}
/* ---------- MOBILE ---------- */
@media screen and (max-width: 1024px) {
  .main {
    flex-direction: column;
  }
  .content {
    padding-top: 0;
  }
  .content.reduced {
    width: 100%;
    height: 0;
  }
  #left {
    background: var(--primary);
  }
  #left .wrapper {
    margin-top: 31vh;
    height: 100%;
  }
  #left .wrapper p {
    display: none;
  }
  #left .wrapper h1 {
    font-size: 6rem;
    line-height: 0.8em;
    margin-top: 10px;
  }
  #left .wrapper h2 {
    font-size: 2.4rem;
    margin-top: 4px;
  }
  #left #stake-container {
    transform: rotate(180deg) translate(-10%, -45%) scale(0.85);
    transform-origin: top;
  }
  #left #stake-container #stake3 {
    position: relative;
    right: 29rem;
    top: 6rem;
    animation-delay: 90ms;
  }
  #right {
    background: var(--secondary);
  }
  #right #dandelion > img {
    bottom: -2rem;
    transform: scale(0.85);
    transform-origin: bottom;
  }
  #right .wrapper {
    display: flex;
    flex-direction: column;
    margin: 2.5vh 0 34vh;
    height: 100%;
  }
  #right .wrapper p {
    display: none;
  }
  #right .wrapper h1 {
    font-size: 6rem;
    line-height: 0.8em;
    margin-top: 10px;
    order: 2;
  }
  #right .wrapper h2 {
    font-size: 2.4rem;
    margin-top: 4px;
    order: 1;
  }
}/*# sourceMappingURL=main.css.map */