@charset "utf-8";

.alt-content {
  padding-top: 100px;
  transform: scale(0);
  -webkit-animation: scale ease-in 1;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-duration: 10s;
  -webkit-animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
  animation: scale ease-in 1;
  animation-fill-mode: forwards;
  animation-duration: 10s;
  animation-delay: 0s;
  animation-iteration-count: 1;
  color: #ffff00;
}

@-webkit-keyframes scale {
  15% {
    transform: scale(0);
  }

  20% {
    transform: scale(0.8);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes scale {
  20% {
    transform: scale(0);
  }

  30% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}
