
body{
    padding: 10px;
    background-color: #f4d4d3;
}


h1{
text-align: center;
color: blue;    
}
h2{
    text-align: center;
    color: blueviolet;
}
h3{
    color: #663366;
}

/*Navegación*/
nav{
    background-color: black;
    color: #deeebc;
}
ul{
    text-align: center;
    list-style-type: none;
}
li{
    text-decoration: none;
    display: inline-block;
    color: #deeebc;
    padding: 10px 35px;
    font-size: large;
}
li a:hover{
    background-color: aqua;
}
/*IDS*/
#blanco{
    background-color: #fffafa;
}
#titulo2{
    color: olive;
}
#titulo2_1{
    color: olive;
}
#gmail{
    color: rgb(4, 250, 4);
}
/*IDS de clase anuncio*/
#a1{
    font-weight: bold;
}
#a2{
    text-align: center;
    font-weight: bold;
    font-size: 30px;
}
#email{
    color: blue;
}
/*Clases*/
.articulos{
    
    width: 75%;
    margin:auto;
    background-color: white;
    border: 3px solid aqua;
    padding: 15px;
}
.cuerpo{
    background-color: #deeebc;
    padding: 10px;
    width: 75%;
    bottom: 0;
    box-sizing: border-box;
}
.anuncio{
    float: right;
    width: 20%;
    border: 1px solid blue;
    padding: 10px;
    box-sizing: border-box;
    margin: 50px;
}
.anuncio::after{
    content: "";
    clear: both;
    display: table;
}
footer{
    text-align: center;
    background-color: blue;
    color: white;
    padding: 10px;
    position: fixed;
    width: calc(100% - 20px);
    right: 0;
    left: 0;
    bottom: 0;

}
#lis{
    text-decoration: none;
    display: inline-block;
    color: #deeebc;
    padding: 10px 35px;
    font-size: large;
    
}