/* css/styles.css */

HTML {
  box-sizing: border-box;
  font-size: 16px;
}

.carousel {
  width: 70vw;
  height: calc(70vw * 9 / 16); /* Relación de aspecto 16:9 */
  margin: auto;
  position: relative;
  overflow: hidden;
}
.carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-buttons {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}
.carousel-buttons button {
  background-color: rgba(0, 0, 0, 0.7);
  border: none;
  color: white;
  padding: 10px;
  cursor: pointer;
}
.stop-start-button,
.change-dir-button {
  position: absolute;
  bottom: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  border: none;
  color: white;
  padding: 10px;
  cursor: pointer;
  left: 50%;
  transform: translateX(-110%); /* Mueve el botón hacia la izquierda */
}
.download-gif-button {
  position: absolute;
  top: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  border: none;
  color: white;
  padding: 10px;
  cursor: pointer;
  right: 10px;
  display: none;
}
.change-dir-button {
  transform: translateX(-0%); /* Mueve el botón hacia la derecha */
}

.icon-container {
  width: 4rem;
  height: 4rem;
}

@media screen and (max-width: 768px) {
  html {
    font-size: 12px;
  }
}

@media screen and (max-width: 480px) {
  html {
    font-size: 9px;
  }
}
