
#contenedor-header {
    background:deepskyblue;
    border-radius: 20px;
    padding : 15px;
    display:flex;
    color:white;
    
}
#header-titulos{
    width : 75%;
    text-align: center;
}

#header-imagen{
    width: 25%;  
}

#navega {
    background: yellow;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding : 5px;
}

li {
  background:orange;
  color:white;
  font-size: 20px;
  border-radius: 10px;
  border-style: dotted;    
  padding:5px;
  margin:3px;
  font-style:italic; 
}

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


article {
    display:flex;
    justify-content: center;
    margin : 15px;
    background: dodgerblue;
    border-radius: 15px;
    padding:15px;
}

article div {
    width :400px;
    background: aquamarine;
    padding: 20px;
    border-radius: 15px;
    justify-content: center;
}

article div p {
    background: cornsilk;
    border-radius: 20px;
    font-weight: 300;
    padding :15px;
    font-size: 20px;
    font-style:italic;
    color : black;
    text-align: center;
}

article  img {
    margin : 15px;
}

footer{
    background: cadetblue;
    border-radius: 20px;
    padding : 2px;
    display : flex;
}

.footer-p{
    color : black;
    font-weight: bolder;
    font-size: 20px;
    width : 50%;
    font-style: oblique;
    text-align: center
}

#contenedorPrincipal{
    display:flex;
}

section {
  width: 80%;  
}

aside{ 
    width: 20%;
    border: 2px grey solid;
    padding:5px;
    border-radius: 20px;
    border-style:dotted;
}

aside p{
    background:beige;
    border-radius: 15px;
    font-weight: 300;
    padding :15px;
    font-size: 15px;
    color : blue;
    text-align: center 
}
