  
  /* CSS fro index.htm */

  /* Etiquetas ESTRUCTURALES */

  html {
    margin: 0;
    background-image: url("../imagenes/SAIYANS/fondos/saiy.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    scroll-behavior: smooth;
  }

  header, footer, nav {
    display: block;
  }

  body {
    max-width: 100%;
    font-family: 'Agbalumo', Arial, sans-serif;
  }

  body, header, footer {
    margin: 0;
  }

  header {
    width: 100%;
    height: auto;
    position: fixed;
    z-index: 100;
  }

  footer {
    width: 100%;
    height: auto;
    background-color: blue;
  }

  footer nav {
    color: #ff9900;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  }

  h2 {
    margin-top: 100px;
    font-size: 35px;
    text-align: center;
    color: rgb(48, 48, 243);
  }

  h4 {
    font-size: 20px;
    color: rgb(250, 136, 30);
    text-align: center;
    margin: 20px;
  }

  a {
    color: rgb(250, 136, 30);
  }

  a:visited {
    color: rgb(250, 136, 30);
    background-color: transparent;
  }

  p {
    font-size: 20px;
    color:	black;
  }

  /* SCROLL BAR */

  /* width */
  ::-webkit-scrollbar {
    width: 8px;
  }

  /* Track */
  ::-webkit-scrollbar-track {
    background: white; 
  }

  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: orange;
    border-radius: 4px;
  }

  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: blue; 
  }

  ::-webkit-scrollbar-corner {
    width: 10px;
  }

  /* ARROW BUTTON */

  #arrowBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 15px;
    z-index: 99;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0px;
    border-radius: 4px;
    background-color: transparent;
  }

  /* HEADER */

  .topnav {
    overflow: hidden;
    background-color: blue;
  }

  .topnav a {
    float: left;
    display: block;
    color: orange;
    text-align: center;
    padding: 12px; 
    text-decoration: none;
    font-size: 25px;
  }

  .active {
    background-color: blue;
    color: blue;
  }

  .topnav .icon {
    display: none;
  }

  .dropdown {
    float: left;
    overflow: hidden;
  }

  .dropdown .dropbtn {
    font-size: 30px;
    border: none;
    outline: none;
    color: orange;
    padding: 21px;
    background-color: inherit;
    font-family: inherit;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    background-color: orange;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 50;
  }

  .dropdown-content a {
    float: none;
    color: blue;
    padding: 10px;
    text-decoration: none;
    display: block;
    text-align: left;
  }

  .topnav a:hover, .dropdown:hover .dropbtn {
    background-color: white;
    color: #ff3333;
  }

  .dropdown-content a:hover {
    background-color: blue;
    color: orange;
  }

  .dropdown:hover .dropdown-content {
    display: block;
  }

  /* BODY */

  .row {
    display: flex; /* Coloca las imágenes en línea */
    justify-content: center; /* Centra las imágenes horizontalmente */
    flex-wrap: wrap; /* Permite que se ajusten en pantallas pequeñas */
    gap: 40px; /* Espaciado entre imágenes */
    margin-bottom: 0px;
  }

  .column {
    text-align: center; /* Centra el contenido de cada columna */
  }

  .video-container, iframe {
    width: 95%;
    max-width: 560px;
    height: auto;
    justify-content: center;
    display: block;
    margin: auto;
    margin-top: 0px;
    margin-bottom: 10px;
    aspect-ratio: 16/9;
  }

  .logo {
    width: 37px; /* Ajusta el tamaño del logo */
    height: auto;
  }

  /* TABLET */

  @media only screen and (min-width:481px) and (max-width:759px) {
    /* HEADER */
    .topnav a:not(:first-child), .dropdown .dropbtn {
      display: none;
    }
    .topnav a.icon {
      float: right;
      margin-top: 10px;
      display: block;
    }

    .topnav.responsive {position: relative;}
    .topnav.responsive .icon {
      position: absolute;
      right: 0;
      top: 0;
    }
    .topnav.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
    .topnav.responsive .dropdown {float: none;}
    .topnav.responsive .dropdown-content {position: relative;}
    .topnav.responsive .dropdown .dropbtn {
      display: block;
      width: 100%;
      text-align: left;
    }

    /* BODY */
    h2 {
      font-size: 25px;
    }

    h4 {
      font-size: 15px;
    }

    p {
      font-size: 15px;
    }
  }

  /* MÓVIL */

  @media only screen and (max-width:480px) {
    /* HEADER */
    .topnav a:not(:first-child), .dropdown .dropbtn {
      display: none;
    }
    .topnav a.icon {
      float: right;
      margin-top: 10px;
      display: block;
    }

    .topnav.responsive {position: relative;}
    .topnav.responsive .icon {
      position: absolute;
      right: 0;
      top: 0;
    }
    .topnav.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
    .topnav.responsive .dropdown {float: none;}
    .topnav.responsive .dropdown-content {position: relative;}
    .topnav.responsive .dropdown .dropbtn {
      display: block;
      width: 100%;
      text-align: left;
    }

    /* BODY */
    h2 {
      font-size: 22px;
    }

    h4 {
      font-size: 12px;
    }

    p {
      font-size: 12px;
    }
  }