@import url('https://fonts.googleapis.com/css2?family=Aboreto&family=Aldrich&family=Coda:wght@400;800&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Sekuya&family=Trispace:wght@100..800&display=swap');

body {
  background: black;
}

.inicio {
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  text-align: center;
  width: 100%;
  margin: 0;
  font-family: "Cinzel Decorative", serif;

}

.contenedorSlides {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: fade 12s infinite;
}

/* slides con delays distintos */
.slide1 {
  background-image: url('967951.png');
  animation-delay: 0s;
}

.slide2 {
  background-image: url('joker.jpg');
  animation-delay: 4s;
}

.slide3 {
  background-image: url('spawn.jpg');
  animation-delay: 8s;
}

@keyframes fade {
  0% {
    opacity: 0;
  }

  16.66% {
    opacity: 1;
  }

  33.33% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}
