body {
  margin: 10;
  font-family: Arial, sans-serif;
  background-color: black; /* Fondo negro */
}

.slider {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.slide {
  width: 100%;
  height: 100%;
  display: none;
}

.link {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5px 10px;
}

.link:hover {
  background-color: rgba(0, 0, 0, 0.7);
}
