/* Fondo negro para dar estilo tipo presentación */
body {
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #fff;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

/* Botón inicial */
#startBtn {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 24px;
  background-color: #1a73e8;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  z-index: 10;
}
#startBtn:hover {
  background-color: #0c56c9;
}

/* Contenedor de la presentación */
.slideshow {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  overflow: hidden;
}

/* Imagen o video */
.slide {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
