body {
  margin: 0;
  background: black;
  overflow: hidden;
}

#container-desktop {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
}
#container-desktop .bg-img img {
  height: 100%;
  width: 100%;
  transform: scale(0.8);
}
#container-desktop #left-container img {
  transform-origin: right;
}
#container-desktop #right-container img {
  transform-origin: left;
}
#container-desktop .side {
  width: 50%;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
#container-desktop #left-container {
  left: 0;
}
#container-desktop #right-container {
  right: 0;
}
#container-desktop #left-side, #container-desktop #right-side {
  width: 50%;
  height: 100%;
  background: black;
  position: absolute;
  top: 0;
  opacity: 0;
  transition: opacity 0.5s;
}
#container-desktop #left-side {
  left: 0;
}
#container-desktop #right-side {
  right: 0;
}
#container-desktop .left-text, #container-desktop .right-text {
  writing-mode: vertical-lr;
  text-align: center;
  font-size: 72px;
  position: absolute;
  top: 50%;
  color: white;
  height: fit-content;
}
#container-desktop .left-text {
  left: 10%;
  transform: translate(0, -50%) rotate(180deg);
  font-family: "Orbitron", sans-serif;
}
#container-desktop .right-text {
  right: 10%;
  transform: translate(0, -50%);
  font-family: "Rock Salt", cursive;
}
#container-desktop .opaque {
  transition: opacity 10s cubic-bezier(0.095, 0.77, 0.075, 0.83) !important;
  opacity: 0.8 !important;
}

#music-player-link {
  opacity: 0;
  transition: opacity linear 1.5s;
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translate(0, -50%);
  transform-origin: initial;
  height: unset;
  transition: right 2.5s;
}
#music-player-link img {
  width: 60px;
}

#music-player-link.shown {
  opacity: 1;
  right: 25px;
}

#container-mobile {
  display: none;
  width: 100vw;
  height: 100vh;
  color: white;
}
#container-mobile .side-mobile {
  flex: 1;
  align-self: center;
  padding: 0;
}
#container-mobile .side-mobile img {
  width: 100%;
}
#container-mobile #left-text-mobile, #container-mobile #right-text-mobile {
  text-align: center;
}
#container-mobile #left-text-mobile {
  font-size: 3em;
  font-family: "Orbitron", sans-serif;
}
#container-mobile #right-text-mobile {
  font-size: 2.5em;
  font-family: "Rock Salt", cursive;
  vertical-align: text-top;
}
#container-mobile .mobile-text {
  text-align: center;
  margin: 50px 0;
}

.cycle {
  animation: changeColor 5s infinite alternate linear;
}

@keyframes changeColor {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}
@media only screen and (max-width: 1024px) {
  #container-desktop {
    display: none;
  }

  #container-mobile {
    display: block;
  }

  #music-player-link {
    opacity: 1;
    top: unset;
    bottom: 5%;
    right: unset !important;
    left: 50%;
    transform: translate(-50%, 0);
  }
  #music-player-link img {
    width: 45px;
  }
}
@media only screen and (max-width: 768px) {
  #container-mobile #left-text-mobile {
    font-size: 2.7em;
  }
  #container-mobile #right-text-mobile {
    font-size: 2.3em;
  }
}
@media only screen and (max-width: 540px) {
  #container-mobile #left-text-mobile {
    font-size: 1.8em;
  }
  #container-mobile #right-text-mobile {
    font-size: 1.4em;
  }
}

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