/*Reset de CSS (es para eliminar los estilos por defecto de los navegadores) */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box ;
}



body{
    background-color: rgb(53, 21, 11);
}


header{
   margin: 50px;
}

ul{
    text-align: center;
    font-size: 20px;
}

h1{
    text-align: center;
    font-style: italic;
    text-decoration: underline;
    color: bisque;
}

.eslogan{
    text-align: center;
    font-size: 30px;
    font-style: italic;
    color: bisque;
    display: block;
    padding: 10px;
    margin: 30px;

}

.im1{
    display: flex;
    justify-content: center;  
    color: bisque;  
   
}
 


footer h2{
    display: block;
    text-align: center;
    font-size: 50px;
    font-style: italic;
    text-decoration: underline; 
    color: black;
    padding: 40px;
    margin: 10px;

}

footer section {
    display: flex;
    justify-content: center;
}

footer button{
    width: 15%;
    height: 15hv;
    background-color: rgb(10, 32, 10);
    border-radius:  5px;
    padding: 15px;
    margin: 10px;

}