body {
    background-color: grey;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.header, .footer {
    width: 100%;
    height: 38px;
    background-color: #b9b9b9;
    color: rgb(248, 248, 248);
    text-align: center;
    font-size: 38px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    padding: 0.2em 0; /* Reducido aún más */
}


.cabecera img, .contenedor img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    margin: 0 auto;
}

.contenedor {
    width: 100%;
    text-align: center;
}

.contenedordemo1 {
    max-width: 100%;
    display: inline-block;
    margin: 0 auto;
    text-align: center;
}

.contenedordemo1 img {
    max-width: 20%;
    height: auto;
}


a {
    color: white;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Estilos responsivos */
@media (max-width: 600px) {
    body {
        font-size: 14px;
        padding: 10px;
    }

    .header, .footer {
        font-size: 24px;
        padding: 0.5em 0;
    }

    a {
        font-size: 16px;
    }
}
