@ charset "utf-8";
/* css Document */

*{
margin0;
}

#contenedor { 
    width:900px;
    margin:auto;
}

body { 
    background-color: oldlace;

}

header { 
    background-color: coral;
    height: 150px;
}

.destacadoheader {
    margin-left: 10%;
    margin-right: 80%;
    color: bisque
}

h1 { font-family: arial;
}

nav {
    margin-left: 30%;
}

nav ul {
    overflow: auto;
    list-style-type: none;
}

nav ul li a {
    float: left;
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 10px;
}


ul li a:hover {
    background-color: oldlace;
    color:darkred;
}

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

main {
    background-color: salmon;
    height: 250px;
    margin-top: 20px;
}

.imagen {
    float: left;
}

.destacado {
    margin-left: 30%; 
    color: darkslategray
}

aside {
    background-color: orange;
    height: 210px;
    margin-top: 20px;
    
}

.destacadoaside {
    margin-left: 30%;
    color: maroon;
}

footer { 
    background-color: chocolate;
    height: 130px;
    margin-top: 20px;
}

.destacadofooter {
    margin-left: 10%;
    margin-right: 10%;
    color: lightgrey;
}