body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex; 
    justify-content: center;
    align-items: center;
    background-color: #ffffff; /* Puedes cambiar este color si lo deseas */
}
.logo-container {
    /* Aseguramos que el contenedor ocupe la pantalla */
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo-container img {
    /* Reglas clave para que ocupe el máximo sin salirse (responsivo) */
    max-width: 100%; 
    max-height: 100vh; 
    width: auto;
    height: auto;
}