body {
  background-color: #1D212D;
  font-family: VT323, sans-serif;
  color: #5eb95e;
}


#shadowBox {
  background-color: #1D212D;

  /* Black w/opacity/see-through */
  margin-top: 50px;
}

.rainbow {
  text-align: center;
  text-decoration: underline;
  font-size: 32px;
  font-family: VT323, sans-serif;
  letter-spacing: 5px;
}
.rainbow_text_animated {
  background: linear-gradient(to right, #6666ff, #0099ff , #00ff00, #ff3399, #6666ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: rainbow_animation 6s ease-in-out infinite;
  background-size: 400% 100%;
}

@keyframes rainbow_animation {
  0%,100% {
    background-position: 0 0;
  }

  50% {
    background-position: 100% 0;
  }
}

.coin{
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 40px;
}

.coin p {
  text-align: center;
  font-size: x-large;
  color: white;
  animation: animate 0.7s linear infinite;
}

@keyframes animate{
  0%{
    opacity: 0;
  }
  50%{
    opacity: 0.8;
  }
  100%{
    opacity: 0;
  }
}