/* style.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

header {
    text-align: center;
    padding: 20px;
}

main{
      text-align: center;
      color: #183029; 
}

#texto-alternante {
    font-size: 36px;
    text-align: center;
    color: #183029;
}

.logo {
    width: 60%;
    max-width: 6 0%; /* Ancho máximo para evitar que sea demasiado grande */
    height: auto; /* Mantiene la proporción del logo */
    margin: 0 auto;
    vertical-align: middle;
    display: flex;
    justify-content: center;
    transition: transform 0.3s ease;
           }

.logos-pequenos {
    justify-content: center;
    margin-top: 5px;
    
}

.logos-pequenos img {
    height: auto; /* Mantiene la proporción del logo */
    width: 25%;
    margin: 0 10px;
    transition: transform 0.3s ease;
}

.logos-pequenos img:hover {
    transform: scale(1.1);
                  }

footer {
    background-color: #183029;
    text-align: center;
    color: #ffffff;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
      /* Media query for smaller screens */
  @media (max-width: 768px) {
    font-size: 0.8em; /* Reduce font size for smaller screens */
    padding: 5px; /* Reduce padding for smaller screens */
}