@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
body {
  background-color: #000;
}

.fv_content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20vh 0;
}
.fv_content .front_img {
  width: 30vw;
  animation: 40s linear infinite rotation;
}
.fv_content .logo_img {
  width: 40vw;
  position: absolute;
  animation: 0.7s linear fadein;
}

footer {
  color: #fff;
  text-align: center;
}/*# sourceMappingURL=style.css.map */