
  /* CSS for contact.htm */

  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;
  }

  /* Etiquetas ESTRUCTURALES */

  body {
    max-width: 100%;
    margin: auto;
    font-family: 'Agbalumo', Arial, sans-serif;
  }

  header {
    width: 100%;
    height: auto;
    position: fixed;
    z-index: 100;
    margin-top: -80px;
  }

  footer {
    width: 100%;
    height: auto;
    background-color: blue;
  }

  footer nav {
    color: #ff9900;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  a:visited {
    color: rgb(250, 136, 30);
    background-color: transparent;
  }

  /* CLASES */

  .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: 20px; /* Espaciado entre imágenes */
  }

  .column {
    text-align: center; /* Centra el contenido de cada columna */
  }

  .column img {
    width: 130px; /* Ajusta el tamaño de las imágenes */
    height: auto;
  }

  .logo {
    width: 37px; /* Ajusta el tamaño del logo */
    height: auto;
  }

  /* ESTILOS */

  h1 {
    font-size: 40px;
    margin-left: 10px;
    margin-top: 80px;
    text-decoration: underline;
  }

  h2 {
    font-size: 30px;
    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);
  }

  p {
    font-size: 20px;
    color: rgb(255, 255, 255);
  }

  nav {
    text-align: center;
  }

  /* Etiquetas FUENTE */

  .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;
  }

  /* CONTACTO */

  .contact {
    color: black;
    margin: 10px;
    font-size: 20px;
  }

  /* FORMULARIO */

  .formtitle {
    font-size: 20px;
    margin-left: 10px;
  }

  .forminfo {
    font-size: 18px;
  }

  /* POLITICA DE PRIVACIDAD */

  iframe {
    margin-bottom: 20px;
    margin-left: 20px;
  }

  /* 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;
  }

  /* 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;
  }

  /* PANTALLA */

  @media only screen and (min-width:752px) {
  }

  /* TABLET */

  @media only screen and (min-width:481px) and (max-width:759px) {
    .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;
    }
  }

  /* MÓVIL */

  @media only screen and (max-width:480px) {
    .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;
    }
  }