* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.main {
  width: 100%;
  height: 100dvh;
  display: grid;
  place-items: center;
}

.thanos-photo {
  width: 300px;
  height: 300px;
  background: url("../images/thanos.webp");
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 1rem;
}

.sub-photos {
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  border-radius: 1rem;
}

.photo-1 {
  animation: fury 4s infinite linear;
}

.photo-2 {
  animation: ironman 4s infinite linear;
}

.photo-3 {
  bottom: -75px;
  right: -75px;
  animation: spiderman 4s infinite linear;
}

.photo-4 {
  bottom: -75px;
  left: -75px;
  animation: wanda 4s infinite linear;
}

@keyframes fury {
  0% {
    top: -75px;
    left: -75px;
  }
  25% {
    top: -75px;
    left: 225px;
  }
  50% {
    top: 225px;
    left: 225px;
  }
  75% {
    top: 225px;
    left: -75px;
  }
  100% {
    top: -75px;
    left: -75px;
  }
}
@keyframes ironman {
  0% {
    top: -75px;
    right: -75px;
  }
  25% {
    top: 225px;
    right: -75px;
  }
  50% {
    top: 225px;
    right: 225px;
  }
  75% {
    top: -75px;
    right: 225px;
  }
  100% {
    top: -75px;
    right: -75px;
  }
}
@keyframes spiderman {
  0% {
    bottom: -75px;
    right: -75px;
  }
  25% {
    bottom: -75px;
    right: 225px;
  }
  50% {
    bottom: 225px;
    right: 225px;
  }
  75% {
    bottom: 225px;
    right: -75px;
  }
  100% {
    bottom: -75px;
    right: -75px;
  }
}
@keyframes wanda {
  0% {
    bottom: -75px;
    left: -75px;
  }
  25% {
    bottom: 225px;
    left: -75px;
  }
  50% {
    bottom: 225px;
    left: 225px;
  }
  75% {
    bottom: -75px;
    left: 225px;
  }
  100% {
    bottom: -75px;
    left: -75px;
  }
}/*# sourceMappingURL=style.css.map */