* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  border: none;
}

body {
  background-color: black;
  text-align: center;
  margin: 0;
  padding: 0;
  height: 100vh;
}

.header {
  width: 100%;
  min-width: 100vh;
  background: rgba(117, 117, 117, 0);
  height: 100%;
}

.logo {
  max-width: 100%;
  width: 64px;
  margin: 10px 20px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 4%;
}

.nav-links li {
  display: inline-block;
}

.nav-links li a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  padding: 00 22px;
  font-size: 20px;
  max-width: 100%;
  width: 64px;
  margin: 10px 20px;
  justify-content: center;
}

.texto-central {
  /* position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgb(0, 0, 0);
  height: 50%;
  position: relative;
}

#central-text {
  position: absolute;
  top: 50%;
}

.texto-central h1 {
  color: rgb(255, 254, 254);
  font-size: 2em;
  letter-spacing: -2px;
  margin-bottom: 10px;
  font-family: cursive;
}

.texto-central button {
  padding: 12px 40px;
  border: none;
  background-color: transparent;
  border: 1px solid rgb(255, 255, 255);
  color: rgb(255, 253, 253);
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.texto-central button:hover {
  background-color: lch(0% 0 0);
}

.mi-enlace:visited {
  color: white;
  text-decoration: none;
}
.container {
  width: 100%;
  aspect-ratio: 16/9;
}

.video {
  /* max-width: 100%; */
  /* position: absolute;
  top: 0;
  left: 0; */
  max-width: 720px;
  height: auto;
  bottom: 0;
  right: 0;
  /* z-index: -1; */
  overflow: hidden;
  padding: 0 10 0 10;
  opacity: 0.5; 
}

@media (min-aspect-ratio: 16/9) {
  .video {
    width: 100%;
    height: auto;
  }
}

@media (max-aspect-ratio: 16/9) {
  .video {
    width: auto;
    height: 100%;
  }
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.parrafo-transparente1 {
  /* position: relative;
  top: 650px;
  left: 0px; */
  background: hwb(0 100% 0% / 0.678);
  padding: 20px;
  border-radius: 10px;
  max-width: 800px;
  margin: 0 auto 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.parrafo-transparente2 {
  /* position: relative;
  top: 1000px;
  left: 0px; */
  background: hwb(0 100% 0% / 0.678);
  padding: 20px;
  border-radius: 10px;
  max-width: 800px;
  margin: 0 auto 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.miembros {
  width: 300px; /* Ancho deseado del contenedor */
  height: 200px; /* Altura deseada del contenedor */
  overflow: hidden;
}

img {
  width: 50%;
  height: 100%;
  object-fit: cover;
}

.contenedor-principal {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f0f0f0;
  border-radius: 8px;
}

h2 {
  text-align: center;
  color: #333;
}

p {
  text-align: justify;
  margin-bottom: 20px;
  font-family: cursive ;
}

.parrafo-transparente3 {
  /* position: relative;
  top: 1000px;
  left: 0px; */
  background: hwb(0 100% 0% / 0.678);
  padding: 20px;
  border-radius: 10px;
  max-width: 800px;
  margin: 0 auto 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}




button {
    display: block;
    margin: 20px auto;
    background: rgb(67, 39, 39) 100.2%;
    color: white;
    font-size: 18px;
    padding: 15px 20px;
    border: none;
    border-radius: 6px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
    transition: all 200ms ease-in-out;
}

h3{
  color: white;
  align-items: center;
  text-align: center;
}

.gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 15px;
    }

    .gallery img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

footer {
      background-color: #263238;
      color: white;
      text-align: center;
      padding: 20px;
      margin-top: 40px;
    }
