@charset "utf-8";
/* CSS Document */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: auto;
}

/* Estilo para el contenido de la ventana modal */
.modal-content {
  position: relative;
  margin: 15% auto;
  padding: 20px;
  width: 80%;
  max-width: 600px;
  background-color: #000;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  animation-name: modalopen;
  animation-duration: 1s;
}

/* Animación para la apertura de la ventana modal */
@keyframes modalopen {
  from {opacity: 0;}
  to {opacity: 1;}
}

/* Botón de cierre de la ventana modal */
.close {
  position: absolute;
  top: 16px;
  right: 20px;
  color: #FFF;
  font-size: 14px;
  font-weight: bold;
  transition: 0.3s;
	
}

.close:hover,
.close:focus {
  color: white;
  text-decoration: none;
  cursor: pointer;
	
}

/* Contenedor para el video de YouTube */
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* Proporción del video */
  padding-top: 20px;
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}






img {
  max-width: 92%;
  height: auto;
	float: right;
clear: right;
}