html,
body {
  background: #000000;
  font-family: "Raleway", sans-serif;
  height: 100vh;
  padding: 0;
  margin: 0;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.about {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 50px;
  font-family: 'Raleway', sans-serif;
  font-weight: bold;
  font-size: 11px;
  text-transform: uppercase;
  text-align: center;
  line-height: 15px;
  color: #fff;
  opacity: 0;
  animation: fade-in 5s 4s ease-out forwards;
}

@media screen and (max-width: 600px) {
  .about {
    left: 30px;
    right: 30px;
    bottom: 50px;
  }
}

.copyright {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 9px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  opacity: 0;
  animation: fade-in 5s 5s ease-out forwards;
}

@media screen and (max-width: 600px) {
  .copyright {
    left: 30px;
    right: 30px;
    bottom: 30px;
  }
}

.logo {
  position: relative;
  -webkit-animation: fade-in 4.15s 0s ease-out forwards;
          animation: fade-in 4.15s 0s ease-out forwards;
}

.logo .logo-mark {
  opacity: 0;
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
  -webkit-animation: fade-in 4.15s 0s ease-out forwards;
          animation: fade-in 4.15s 0s ease-out forwards;
}

@keyframes fade-in {
  0% {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
    opacity: 1;
  }
}