@import url(href=https://fonts.googleapis.com/css?family=Open+Sans:300,400,400i,600,600i|Oswald:200,300,400,500,600,700" rel="stylesheet");

/* #a68cc1 */

*{
    margin: 0;
    padding: 0; 
    box-sizing: border-box;
}

body {
    font-family: 'Oswald', sans-serif;
    background-color: whitesmoke;
    min-height: 100vh;
    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


header {
    background-color: white;
    
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    justify-content: center;
}

header nav {
    width: 100%;
    justify-content: center;
}

header ul {
    list-style: none;
    display: flex;
    width: 100%;
    justify-content: center;
}

header ul li {
    text-transform: uppercase;
    width: 5em;
    height: 5em;
    
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    margin-top: 0.5em;
}

header ul li a {
    display: flex;
    align-items: center;
    justify-content: space-around;
    
    margin: auto;
    width: 100%;
    height: 100%;
    color: white;
    text-decoration: none;
    text-align: center;
    color: rgba(44, 214, 168, 0.8);
}

span {
    padding: 0 1.5em 0 1.5em;
    border: 2px solid rgba(238, 111, 97, 0.8);
    border-style: double;

}

main {
    background-color: white;
    display: flex;
    flex-direction: column;
    margin: 4em 1em 0.5em 1em;
    font-family: 'Open Sans', sans-serif;   
}

main img {
    width: 30%;
    height: auto;
    box-shadow: 1em 1em rgba(238, 111, 97, 0.8);
    display: block;
    margin: auto;
}

h1 {
    display: block;
    
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
}

h2 {
    font-family: 'Oswald', sans-serif;
    font-weight: 200;
    margin-top: -0.4em;
    font-size: 20;
}

h3 {
    font-weight: 600;
    font-style: italic;
    padding-left: 2em;
    font-size: 17;
}

.dropdown {
    position:inherit;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: relative;
    background-color: white;
    min-width: 0;
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display:inherit;}

h4{
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 18;
    background-color: #2e2d2d;
    color: white;
    
    padding-top: 0.5em;
    padding-left: 1em;
    padding-bottom: 0.5em;   
}

ul {
    padding-bottom: 0.5em;
}

ul li {
    list-style: none;
    padding-left: 1em;
    font-size: 14;
    font-weight: 400;
}

#curso {
    background-color: rgba(44, 214, 168, 0.8);
}


div p {
    padding-left: 1em;
}

aside {
    font-family: 'Open Sans', sans-serif; 
    padding-top: 1em;
    padding-left: 1em;
    padding-bottom: 1em;
    margin: 1em 1em 2em 1em;
    border: 0.7em solid;
}

h5 {
    font-size: 20;
    font-weight: 600;
}

h6 {
    font-size: 15;
    font-weight: 600;
}

h6 a {
    color: black;
    text-decoration: none;
}

p {
    font-size: 14;
    font-weight: 400;
}

ul#datos {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    padding: 0.5em 2em;
    border: 0px solid #2a2a2a;
}

footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
        
    margin-top: 2em;
    padding: 0 2em;
    background-color: #ee6f61; 
}

footer div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    
    margin: 0em 4em 0em 4em;    
}

footer div img {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 55px;
}

footer p {
    color: white;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 0.7em;
    padding: 0 2em; 
    margin-bottom: 2em;
}

footer a img {
    padding: 1em;
}



