html, body {
  background-color: #88D1CA !important;
  width: 100vw;
  height: 100vh;
  padding: 0;
  margin: 0;
}

.sparkle {
  position: absolute;
  width: 40px;
  height: 40px;
  animation-name: sparkle-anim;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
  opacity: 0;
}

#fullscreen-link {
  display: block;
  width: 100%;
  height: 100%;
}

#main-container {
  position: relative;
  height: 80%;
  width: 100%;
}

.enter-message {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0%);
  margin-right: auto;
  margin-left: auto;
}

#enter-message-lg {
  top: 88%;
  width: 320px;
}

#enter-message-sm {
  top: 134%;
  width: 80%;
}

#large-anim-container {
  animation-name: logo-intro-anim;
  animation-duration: 1.0s;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  opacity: 0;
}

#logo-img-wide-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 860px;
  margin-left: auto;
  margin-right: auto;
}

#logo-img-small-container {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 66%;
  margin-left: auto;
  margin-right: auto;
  animation-name: logo-intro-anim;
  animation-duration: 1.0s;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  opacity: 0;
}

#logo-img {
  width: 100%;
  height: 100%;
}

#sparkles-container {
  position: relative;
  width: 100%;
  height: 100%;
}

#sparkle1 {
  top: -115px;
  left: 20px;
  animation-delay: 1s;
}

#sparkle2 {
  top: -155px;
  left: 210px;
  animation-delay: 1.1s;
}

#sparkle3 {
  top: -196px;
  left: 50px;
  animation-delay: 1.8s;
}

#sparkle3 {
  top: -196px;
  left: 50px;
  animation-delay: 1.1s;
}

#sparkle4 {
  top: -160px;
  left: 400px;
  animation-delay: 4.3s;
}

#sparkle5 {
  top: -195px;
  left: 320px;
  animation-delay: 1.9s;
}

#sparkle6 {
  top: -56px;
  left: 465px;
  animation-delay: 1s;
}

#sparkle7 {
  top: -76px;
  left: 288px;
  animation-delay: 1.8s;
}

#sparkle8 {
  top: -198px;
  left: 590px;
  animation-delay: 2s;
}

#sparkle9 {
  top: -125px;
  left: 616px;
  animation-delay: 3.7s;
}

#sparkle10 {
  top: -160px;
  left: 696px;
  animation-delay: 4s;
}

#sparkle11 {
  top: -130px;
  left: 787px;
  animation-delay: 1.2s;
}

@keyframes sparkle-anim {
  0% {
    transform: scale(0) rotate(0deg);
    opacity: 0;
  }
  26% {
    transform: scale(1.2) rotate(90deg);
    opacity: 1;
  }
  39% {
    transform: scale(1) rotate(135deg);
    opacity: 0;
  }
  100% {
    transform: scale(0) rotate(0deg);
    opacity: 0;
  }
}

@keyframes logo-intro-anim {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}