@font-face {
  font-family: PPMonumentExtended-Regular;
  src: url("resources/PPMonumentExtended-Regular.woff2") format("woff2");
}
@font-face {
  font-family: PPMonumentExtended-Light;
  src: url("resources/PPMonumentExtended-Light.woff2") format("woff2");
}
@font-face {
  font-family: PPMonumentExtended-Black;
  src: url("resources/PPMonumentExtended-Black.woff2") format("woff2");
}
:root {
  --aColor: #0FFFFF;
  --animationWidth: 15vw;
  --animationHeight: calc(var(--animationWidth) * 0.618);
}

@media (max-width: 1200px) {
  :root {
    --animationWidth: 180px;
  }
}
@keyframes move {
  15.33%, 16.67% {
    top: calc(100svh - var(--animationHeight));
    left: 36.25vw;
  }
  16.67%, 32.00% {
    color: #B1FF00;
  }
  32.00%, 33.33% {
    top: 0;
    left: calc(72.5vw - var(--animationWidth));
  }
  33.33%, 48.67% {
    color: #FFFF00;
  }
  48.67%, 50.00% {
    top: 38.52svh;
    left: 0;
  }
  50.00%, 65.33% {
    color: #00FFE2;
  }
  65.33%, 66.67% {
    top: 9.04svh;
    left: calc(100vw - var(--animationWidth));
  }
  66.67%, 82.00% {
    color: #00FF80;
  }
  82.00%, 83.33% {
    top: calc(100svh - var(--animationHeight));
    left: 36.25vw;
  }
  83.33%, 98.67% {
    color: #FFFFFF;
  }
  98.67%, 100% {
    top: 4.44svh;
    left: 2.5vw;
  }
  0%, 15.33% {
    color: #FF00F5;
  }
}
* {
  box-sizing: border-box;
}

html {
  height: 100svh;
}

body {
  background-color: #000000;
  margin: 0;
  color: #FFFFFF;
  height: 100svh;
  font: normal normal 300 1em/1.69em PPMonumentExtended-Regular, sans-serif;
  overflow: hidden;
  letter-spacing: 0.8px;
}

a {
  color: inherit;
  text-decoration: none !important;
  transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}
a span {
  transition: color 0.2s ease-in-out;
}
a:hover {
  color: var(--aColor) !important;
  border-color: var(--aColor) !important;
}
a:hover span {
  color: var(--aColor) !important;
}

#animation {
  position: absolute;
  top: 4.44svh;
  left: 2.5vw;
  width: var(--animationWidth);
  animation: move 12s infinite ease;
}

#address {
  position: absolute;
  bottom: 30px;
}
#address #post {
  font-family: PPMonumentExtended-Light, sans-serif;
}
#address span {
  color: #A0A0A0;
}

#booking-btn {
  position: absolute;
  border: 3px solid white;
  border-radius: 15px;
  padding: 5px;
  font-size: 1.37em;
}
#booking-btn span {
  color: #FFFFFF;
  padding: 0 20px;
}

#logo {
  position: absolute;
  min-width: 164px;
  width: 24svh;
}
#logo #player {
  height: 100%;
  width: 100%;
}

@media (max-width: 480px) {
  body {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #address, #logo, #booking-btn {
    left: 50%;
    transform: translateX(-50%);
  }
  #booking-btn {
    top: 200px;
    width: 350px;
  }
  #address {
    width: 228px;
    text-align: center;
  }
  #logo {
    bottom: 200px;
  }
}
@media (min-width: 481px) {
  #booking-btn {
    transform: translateY(-50%);
    right: 30px;
    top: 50%;
  }
  #address {
    right: 30px;
    text-align: right;
  }
  #logo {
    bottom: 0;
  }
}

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