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

#header-imagen{
    width: 25%;  
}

h1{
  text-align: center;
  width: 100%;
  margin: 0px auto;
  color: white;
 
  letter-spacing: 5px;
  top: 50%;
  
  text-shadow: -1px -1px 0px blue,
    3px 3px 0px blue,
    6px 6px 0px blue;
}
#navega {
    background: #7D1500;
    border-style: inset;
}


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

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

li:hover {
  background: #FF0000;
  color:#111111;
  font-size: 20px;
  border-radius: 10px;
  padding:5px;
  margin:3px;
  font-style:italic; 
}

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


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

article div {
    width :400px;
    background: #F99D19;
    padding: 20px;
    border-radius: 15px;
}

article div p {
    background: #9EA7B8;
    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 : #B41E1E;
    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: 1px black solid;
    padding:5px;
    border-radius: 20px;
    background-color: azure;
}

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