body {
  margin: 0;
  font-family: 'Rozha One';
  background: #111;
  color: #eee;

}

.scroll-drag.active {
  cursor: grabbing;
  user-select: none;
}
.scroll-drag {
  cursor: grab;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}


.contenedor_2 {
  width: 90%;
  max-width: 5000px;
  margin: auto;
  color:#ffff;
  align-items:center;
}


header {
  background: #000;
  padding: 20px 0;
}



nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 15px;
}

nav a {
  text-decoration: none;
  color: #FEE685;
}

.hero {
  background: #222;
  padding: 80px 20px;
  text-align: center;
}

.aparecer {
  opacity: 0;
  animation: aparecer 2s ease-in forwards;
}

@keyframes aparecer {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bio {
  background: #222;
  padding: 30px 5px;
  text-align: center;
}

.hero h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.prueba {
  font-size: 2.0em;
  font-family: Calligraffitti;
  color: #FEE685;
}

footer {
  text-align: center;
  padding: 20px;
  background: #000;
  color: #777;
}

.contenido {
  padding: 40px 20px;
}

.galeria .imagenes {
	display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-height: 600px; /* Altura máxima del contenedor */
    overflow-y: auto;  /* Scroll vertical */
    padding-right: 10px; /* Espacio para la barra de scroll */
}

.galeria img {
  width: 100%;
  max-width: 300px;
  border: 2px solid #333;
  border-radius: 5px;
  height: auto;
}

    .profile {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
    }

    .profile-img {
      flex: 2 1 250px;
      text-align: center;
    }

    .profile-img img {
      max-width: 400px;
      
    }
a {
    color: white;
    text-decoration: none;
	font-family: 'Montserrat', sans-serif;
  }

  a:hover {
    color: light;
    text-decoration: underline;
	font-family: 'Montserrat', sans-serif;
  }
	
.text{
	font-family: 'Montserrat', sans-serif;
}	

.textInicio{
	font-size:12 px;
	font-family: 'Montserrat', sans-serif;
}

  .biografia {
  text-align: justify;
  max-width: 800px;
  margin: 50px auto;
  font-size: 1.1em;
  line-height: 1.6;
  color: white;
  font-family: 'Montserrat', sans-serif;
	
}
  #event-message {
      font-size: 2em;
      margin-bottom: 20px;
      font-weight: 100;
    }

    #timer {
      font-size: 2.5em;
      font-family: 'Montserrat', sans-serif;
      color: #00ffcc;
      text-shadow: 0 0 8px #00ffcc;
    }


 @media (max-width: 768px) {
      .container {
        flex-direction: column;
      }

      .img-box, .content {
        width: 100%;
      }

      #event-message {
        font-size: 1.5em;
      }

      #timer {
        font-size: 2em;
      }
    }
	
	
.galeria .item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.galeria .item img:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.evento-img img {
	
      max-width: 500px;
	  align-items:center;
      
    }
	
	a i.fab.fa-instagram {
  font-size: 24px;
  color: #fff; /* Cambia según tu fondo */
  margin-right: 10px;
  transition: color 0.3s;
}

a i.fab.fa-instagram:hover {
  color: #e1306c; /* Color característico de Instagram */
}



.social-icons-right {
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 1000;
}

.social-icons-right a {
  color: #fff; /* O #333, según tu fondo */
  font-size: 24px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons-right a:hover {
  color: #e1306c; /* Color de Instagram al pasar el mouse */
}