@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300&display=swap');
@keyframes ojo {
  0% {
    background-position: 0%
  }
  50% {
    background-position: 100%
  }
  100% {
    background-position: 0%
  }
}
body {
  margin: 0;
  text-align: center;
  letter-spacing: -1px;
  text-transform: uppercase;
  background: url(bg.jpg) center;
  background-size: cover;
  cursor: crosshair;
  font-size: 1.3vw;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  color: white;
}
.load {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: white;
  z-index: 9;
  cursor: wait;
}
a {
  display: inline-block;
  text-decoration: none;
  cursor: crosshair;
  padding: 15px;
  color: inherit;
}
img {
  width: 10vw;
  margin: 15px;
}
.top img {
  width: 7vw;
}
span {
  position: absolute;
  left: 0;
  width: 100%;
}
.top {
  top: 30px;
}
.mid {
  top: 50%;
  transform: translatey(-50%);
}
.footer {
  bottom: 30px;
}
@media (max-width: 1024px) {
  body {
    font-size: 2vw;
  }
  img {
    width: 20vw;
    margin: 30px;
  }
  .top img {
    width: 12vw;
  }
}
@media (max-width: 500px) {
  body, .top, .mid a {
    font-size: 4.5vw;
    line-height: 1.7;
  }
  img {
    width: 25vw;
  }
  .mid a {
    padding: 5px;
    display: block;
  }
  .top img {
    width: 20vw;
    margin: 15px;
  }
  .footer {
    width: 90%;
    left: 50%;
    transform: translatex(-50%);
  }
}