
  /* BODY */

  * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
 }

  body {
    margin: 0;
    font-family: 'Archivo', sans-serif;
    font-family: 'Open Sans', sans-serif;
    font-family: 'Tilt Warp', cursive;
    background-color: #fff;
    color: #232323;

  }

  /* HEADER */

  .header {
    text-align: center;
    padding: 32px;
    color: #232323;
  }

h1 {
  font-family: 'Archivo', sans-serif;
  font-family: 'Open Sans', sans-serif;
  font-family: 'Tilt Warp', cursive;
  color: #232323;
}

  /* COMING SOON */
h2 {
  font-family: 'Archivo', sans-serif;
  font-family: 'Open Sans', sans-serif;
  font-family: 'Tilt Warp', cursive;
  color: #232323;
  text-align: center;
  padding-top: 20%;

  /* Inicialmente oculto y desplazado hacia abajo */
  opacity: 0;
  transform: translateY(50px);

  /* Animación */
  animation: aparecer 1s ease-out forwards;
}

/* Cambio de color al pasar el ratón */
h2:hover {
  color: #ff69b4;
}

/* Definimos la animación */
@keyframes aparecer {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
  /* SE ACABA COMING SOON */



  .row {
    display: -ms-flexbox; /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
    padding: 0 4px;
  }

  /* Create four equal columns that sits next to each other */
  .column {
    -ms-flex: 35%; /* IE10 */
    flex: 35%;
    max-width: 33.3%;
    padding: 0 5px;
  }

  .column img {
    margin-top: 8px;
    vertical-align:middle;
    width: 100%;
  }

  /* Responsive layout - makes a two column-layout instead of four columns */
  @media screen and (max-width: 800px) {
    .column {
      -ms-flex: 50%;
      flex: 50%;
      max-width: 50%;
    }
  }

  /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 600px) {
    .column {
      -ms-flex: 100%;
      flex: 100%;
      max-width: 100%;
    }
  }

/* NAV BAR */
.sidenav {
  height: 100%;
  width: 160px;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color:fff;
  overflow-x: hidden;
  padding-top: 200px;
}

.sidenav a {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 25px;
  color: #000;
  display: block;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.main {
  margin-left: 160px; /* Same as the width of the sidenav */
  margin-top: 60px;
  font-size: 28px; /* Increased text to enable scrolling */
  padding: 0px 10px;
  position: fixed;
  background-color:ffff;


}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

/* VIDEO */
.video-container {
        position: relative;
        width: 100%; /* Se adapta al ancho de la pantalla */
        max-width: 1120px; /* Máximo tamaño para mantener calidad */
        aspect-ratio: 16 / 9; /* Mantiene la proporción correcta */
        margin: 20px auto; /* Centrado y con separación entre videos */
    }

    .video-container iframe {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }



/* FOOTER */

footer {
 text-align:center;
 color: rgba(0, 0, 0, 1);
 display:block;
 width: 100%;
 margin-top:20%;
 margin-right: 10%;
 margin-left: 35%;
}



/* ABOUT */

.container {
  position:absolute;
  width: 50%;
}

.image {
  display:flex;
  margin-left: 50%;
  width: 100%;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0.0;
  transition: .3s ease;
  background-color: #00000;
}

.container:hover .overlay {
  opacity: 1;
}

.text {
  color: #ffd700;
  font-size: 100%;
  position:relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  display: relative;
  margin-left: 50%;
  width: 100%;
}
