.slider {
  display: flex;
  overflow-x: auto;
  width: 100%;
  padding: 0px;
  margin: -10px;
}

.slider article {
  flex: 0 0 auto;
  padding: 10px;
  margin: 0 px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0px 4px 10px rgba(58, 16, 156, 0.2);
  width: 300px;
}

article:hover {
  cursor: pointer;
  background: linear-gradient(120deg, #0a0a0a 20%, #cee4e4 50%, #ffffff 100%);
  border: rgba(0, 0, 0, 0.7) solid 1px;
  background-size: 400% 200%;
  
  animation: gradient 5s ease infinite;
  animation: moverColores 4s infinite alternate ease-in-out;

}

.slider img {
  width: 80%;
  margin-left: -5px;
  margin-top: 1px;
  height: 230px;
  object-fit: cover;
  border-radius: 25px;
  flex: 10 10 auto;
  transition: transform 0.3s ease-in-out;
}

.slider img:hover {
  transform: scale(1.1);
}

.slider article img:hover::after {
  content: "hacer click para Mas información";
  position: relative;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  border-radius: 5px;
  font-size: 14px;
  z-index: 1;
}


.slider img h1 {
  position: relative;
  margin-top: 30px;
  margin-left: 0px;
  font-size: 15px;
  color: rgb(255, 255, 255);
}

.slider article:hover::after p {
  text-decoration: none;
  color: black;
}
