@charset "utf-8";

@import url('https://fonts.googleapis.com/css?family=Shadows+Into+Light');
@import url('https://fonts.googleapis.com/css?family=Questrial');

*{
    box-sizing: border-box;
}

body{
    /*background-color: rgba(221, 17, 64, 0.67);*/

    background
}

nav { 
    background-color: rgba(229, 87, 87, 0.85)
}

header h1{
    color: black;
    font-size: 3em;
    text-align: center;
    font-family: 'calibri', cursive;
    margin-top: -0.1em;
    margin-bottom: -0.1em;
}

header nav ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-content: space-around;
    justify-content: space-around;
}

header nav ul li a:hover {
    color: #caf4bb;
}

header nav ul li a{
    color:black;
    text-decoration:none;
    display: block;
    text-align: center;
    font-family: 'Questrial', sans-serif;
}

.destacado{
    color: black;
    font-weight: 800;
        
}

main section p{ 
    color: black;
    display: flex;
    text-align: center;
    font-family: 'Questrial', sans-serif;
    flex-wrap: wrap;
}

header img {
    display: flex;
    margin: auto;
    margin-bottom: 1em;
    height: 5em;
}

body article img{
    float:right;
    margin-bottom: 0.1em;
    max-width: 50%;
    margin-right:auto;
}

main div h3{
    font-size: 1.5em;
    text-align:left;
    font-family: 'Questrial', sans-serif;
    background-color: rgba(229, 87, 87, 0.85)
}
main div ul li{
    font-family: 'Questrial', sans-serif;
    flex-wrap: wrap;
}

footer {
    background-color:rgba(204, 59, 59, 0.85);
    text-align:justify;
    padding: 0 0.2em 0.2em 0.2em;
    font-family: 'Questrial', sans-serif;
   
}

aside {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-bottom: 1em;
    margin-top: 8em;
    font-family: 'Questrial', sans-serif;
}

@media screen and (min-width: 30em) {
    header nav ul {
        display: flex;
        flex-direction: row;
    }
    main section p{
        justify-content: center;
        
    }
    body article img{
        max-width: 10%;
        margin-left: -2em;
        margin-right: 8em;
        float: center;
        
    }
    aside 
