
@charset "utf-8";
@import url ('https://fonts.googleapis.com/css?family=Lato:100,300,400,700,900');

* {box-sizing: border-box;
    list-style: none;
    margin: 0.1em;
padding: 0;}

body{
        background-color: rgb(59, 61, 73)    
}

header {
    display: flex;
    flex-direction: column;
    }

header img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 3em;
    margin: auto;    
    
}

.hamburguesa {
    display: flex;
    flex-direction: row;
    margin-top: -3em;
    align-self: flex-start;
     
}
   
header h1{
    font-family: 'Lato', sans-serif;
    font-weight: 100;
    color: aliceblue;
    display: flex;
    justify-content: center;
    font-size: 1em;
    margin-top: -0.4em;
}

header h2{
    display: flex;    
    text-align: left;    
    font-family: 'Lato', sans-serif;
    background-color: rgb(226, 226, 226);
    align-content: center;
    font-size: 0.8em;
    font-weight: 100;
    padding: 0.5em 3em 0.5em 1em;
    color: rgb(89, 90, 108);
    margin-bottom: 2em;
    }

main{
    display:flex;
    flex-direction: column;
}

main section h3 {
    display: flex;
    justify-content: center;
    align-content: center;
    text-align: center;  
    padding: 0.8em 12em 0.8em 12em;
    margin: auto;
    font-family: 'Lato', sans-serif;
    background-color: rgb(89, 90, 108);
    color: rgb(226, 226, 226);
    font-weight: 100;
    font-size: 1em; 
    margin-bottom: 0.4em;
    
    }  

main section h3:hover {color:  rgb(16, 198, 222)}

main section nav ul{
    
    display: flex;
    font-family: 'Lato', sans-serif;
    
    
}
.cursada {
    color: aliceblue;
    text-decoration: none;
    list-style: none;
    color: #ffffff;
    display: flex;
    justify-content: center;
    background-color: rgb(89, 90, 108);
    font-size: 1em;
    padding: 0.8em 12em 0.8em 12em;
    margin-bottom: 0.4em;
    
}

.cursada:hover {color: aqua} 
   
main section h4 { 
    display: flex;
    justify-content: center;
    background-color: rgb(107, 107, 113);
    padding: 0.6em;
    margin: auto;
    margin-bottom: 0.2em;
    font-family: 'Lato', sans-serif;
    color: aliceblue;
    font-size: 0.9em;
    font-weight: 100;
    }

main section h4:hover {color: aqua}

.destaca{
    background-color: rgb(50, 172, 188);
    color: rgb(59, 61, 73);
    margin-bottom: 0.6em;
}

aside{
    display: flex;
    justify-content: center;
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-size: 0.8em;
    font-weight: 100;
    color: rgb(16, 198, 222);
    margin-top: 3em
}






footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-size: 0.7em;
    color: aliceblue;
    font-weight: 100;
    margin-top: 4em;
    
    
}

@media screen and (min-width:50em){
    
    header {
        display: flex;
        flex-direction: row;
    }
    
    header img{
        display: flex;
        justify-content: flex-start;
    }
    
    .hamburguesa{
        display: flex;
        flex-direction: row;
        margin-top: 0.1em;
            
    }
    
    header h1{
        display: flex;
        justify-content: flex-start;
        margin: 1em 0.5em;
    }
    
    header h2{
        display: flex;
        justify-content:flex-start;
        flex-grow: 1;
    }
    
    main{
        display: flex;
        flex-direction: 
    }
        
    
    
}










