@charset "utf-8";

@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed');

body{
    background-color: rgba(0, 157, 255, 0.67)
}

nav { 
    background-color: rgba(138, 211, 250, 0.85)
}

header h1{
    color: black;
    text-align: center;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 800;
}

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{
    color:black;
    text-decoration:none;
    display: block;
    text-align: center;
    
}

header nav ul li a:hover {
    color:darkblue;
}

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

main section{
   
    margin: 0 0 0.7em 0;
    padding: 0.5em
    
}

main section h2{
    color:black;
    font-size: 1.2em;
    background-color:rgba(45, 102, 255, 0.79);
    text-align: center;
    font-size: 1.5;
    font-family: 'Roboto Condensed', sans-serif;
    color: rgb(255, 255, 255);
    font-weight: 800;
    
}

main section p{ 
    color: black;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 100;
    font-size: 1.2em;
    text-align: center;
}

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

main article h3{
    font-size: 1.5em;
    text-align: center;
}

article p{
    text-align: justify;
    padding: 0 0.5em 0 0.5em;
    border: solid;
}

footer {
    background-color:rgba(45, 102, 255, 0.79);
    font-size: 0.9em;
    text-align: justify;
}

aside {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-bottom: 2em;
    margin-top: 3em;
}


@media screen and (min-width: 30em) {
    header nav ul {
        display: flex;
        flex-direction: row;
    }
    main section p{
        text-align:justify;
        
    }
}

