@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
* {
  padding: 0;
  margin: 0;
}



body {
  background: #e0ef8a;
  background: linear-gradient( #023a22 35%, #01b301 80%);
  background-size: 1500px 1000px;
  background-repeat: no-repeat;
  font-family: "poppins", sans-serif;
  height: 100vh;
}


.contenedor{
  max-width: 450px;
  position: relative;
  margin: 135px auto;
  padding: 10px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.25);
}

img{
  border-radius: 5px;
  height: 300px;
}

.mySlides{
  display: none;
}

.prev, .next{
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next{
  right: 10px;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover{
  background-color: rgba(0,0,0,0.8);
}

.fade{
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade{
  from{opacity: .4}
  to{opacity: 1}
}

@keyframes fade{
  from{opacity: .4}
  to{opacity: 1}
}