body{
    font-family: sans-serif;
    margin: 0;

    display: flex;
    flex-wrap: wrap; 
    
}



header {
    flex: 1 1 90%;


    display: flex;  
    justify-content:space-between ;
    min-height: 70px;
    background-color: coral;
    align-items: center;
    padding: 10px;
   
}

main{
    flex: 1 1 70%;

    
}

aside{
    flex: 1 1 20%;
    

    display: flex;
    flex-wrap: wrap;
}
aside>section{
    margin: 5px;
    
    border-style: double;
}

.naranja{
    flex: 1 1 30%;
    background-color: orange;
}
.celeste{
    flex: 1 1 50%;
    background-color: aqua;
}
.azul{
    flex: 1 1 100%;
    background-color: blue;
}
.verde{
    flex: 1 1 10%;
}

footer{
    flex: 1 1 90%;

    background-color: violet;
    border: 5px;
    border-style: double;
   
   
}


a{
    text-decoration: none;
     color: black;
 }
.logo {
    display: flex;
    align-items: center;

}

.logo img{
    height: 50px;
    margin-right: 10px;
}

nav a{

   font-weight: 600;
   padding-right: 10px;
}

nav a:hover{
    color:white
}

@media (max-width:700px) {
    header{
        flex-direction: column;
    }

    nav{
        padding: 10px 0px;
    }
}


.titulo {


   background-color: brown;
    color: rgb(101, 120, 150)
    ; font-size: 70px
    ; display:flex;justify-content: center
    ;align-items: center;
    margin: 5%;

  }

  .parrago  {
    font-size: 50px;font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; background-color: azure;

  }