@-webkit-keyframes fadeInUp {
  from {
    transform: translate(-50%, -50%) translate3d(0, 40px, 0);
  }
  to {
    transform: translate(-50%, -50%) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    transform: translate(-50%, -50%) translate3d(0, 40px, 0);
  }
  to {
    transform: translate(-50%, -50%) translate3d(0, 0, 0);
    opacity: 1;
  }
}
body {
  background: url("./assets/domain-protect_background.jpg");
  width: 100%;
  margin: 0;
  height: 100vh;
  background-size: cover;
  background-position: center;
}
body img {
  max-width: 90%;
  max-height: 400px;
  height: 100%;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-duration: 1s;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  opacity: 0;
  animation-name: fadeInUp;
  -webkit-animation-name: fadeInUp;
}
body img[src*="2"] {
  max-height: 215px;
}
body img[src*="1"] + a {
  position: absolute;
  top: 75%;
  left: calc(50%);
  transform: translateX(-50%);
}
body a {
  position: absolute;
  top: 70%;
  left: calc(50% + 65px);
  transform: translateX(-50%);
  font-size: 24px;
  color: #c3e6eb;
  font-family: "Open Sans";
}
@media screen and (max-width: 768px) {
  body a {
    left: calc(50%);
    font-size: 18px !important;
  }
}
@media screen and (max-width: 567px) {
  body a {
    left: calc(50%);
    font-size: 16px !important;
  }
}
