header{
    background: rgb(250, 186, 12);

    /* Enable flex mode. */
    display: flex; 
    
    /* Spread out the elements inside the header. */
    justify-content: space-between;

    /* Align items vertically in the center. */
    align-items: center;
}
@media (max-width: 1000px){
    header{
            /* Reverse the axis of the header, making it vertical. */
            flex-direction: column;
            
            /* Align items to the begining (the left) of the header. */
            align-items: flex-start;
    }
}
    .main-content__brand1{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;

    }
    h1{
        color:rgb(255, 255, 255);
        font: message-box;
        text-shadow: 2px 2px 2px rgb(37, 49, 54);
        font-size:15px;
        margin: -1px 0 0 1rem;
    }

    nav ul button:hover {
        background: rgb(231, 36, 36);
        padding: 1rem;
    }
    .main-content__brand1 img {
        margin: auto 0 0 1rem;
        height: 3rem;
        width: 5rem;
        margin-top: 1px;
    }
    nav{
        margin: 0 1rem;
    }
    nav ul li{
        display: inline;
        margin:2px;
    } 
    nav ul li button{
        color: white;
        text-decoration: none;
        font-size:13px;
        font-family: sans-serif;
        font-weight: bolder;
        background-color: rgb(250, 186, 12);
        border: none;
    }
    
    footer{
        width: 100%;
        height: 70px;   
    }
    i{
        padding:15px;
    }
/* PIES DE PAGINA */
.text-center{
    padding: 12px 0 12px;
    margin-top: 5px;
    text-align: center;
}
footer li {
    display: inline;
}