body, p {
  margin: 0;
}

p:first-child {
  padding-top: 10px;
}

p {
  padding: 2px;
}

a {
  color: black;
}

.container {
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;

  animation-name: animate;
  animation-direction: alternate;
  animation-duration: 30s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-play-state: running;
  animation-timing-function: ease-in-out;
}

@keyframes animate {
  0% {
    background-image: url("https://i.ibb.co/fk9ZN3P/14des21frame1.jpg");
  }
  25% {
    background-image: url("https://i.ibb.co/LgJbZtZ/nabicho1.jpg");
  }
  50% {
    background-image: url("https://i.ibb.co/93ZFFRt/nyap1.jpg");
  }
  75% {
    background-image: url("https://i.ibb.co/zsvnvG1/grid1.jpg");
  }
  100% {
    background-image: url("https://i.ibb.co/6RRj5fK/nyap2.jpg");
  }
}