@charset "utf-8";

html{background-color: black}

body{background-color: white;}

body header nav{
    background-color: orange;
    font-family: sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body header nav h1{
    text-align: center;
    color: white;
    font-style: italic;
    font-size: 1.9rem;
    margin: 1rem;
    font-family: sans-serif;
    padding-top: 0.3em;
}

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

header nav ul li a {
    color: orange;
    background-color: white;
    text-decoration: none;
    width: 8em;
    border-radius: 25em;
    padding: 0.3em;
    display: block;
    text-align: center;
    font-size: 0.8em;
    font-weight: 800
    }

main{
    margin: 2.6em;
    padding-top: 3em;
    padding-bottom: 4em;
    font-family: sans-serif;
    display: flex;
    justify-content:center;
    }

main img{
    margin: auto;
    border-radius: 25em;
    height: 12em;
    display: flex;
}

main h2{
    border-radius: 5em;
    background-color: orange;
    color: white;
    height: 1.2em;
    padding: 0.1em 0 0 0;
    font-size: 2em;
    font-weight: 500;
    letter-spacing: 0.2em;
    display: flex;
    justify-content: center    
}

.informacion{
    font-size: 0.8em;
    font-style: italic
}

main section div{
    list-style: none;
}

main section div h5{
    font-size: 1em;
}

main section div li a{
    color: orange;
    font-weight: 700;    
}
footer{
    background-color: black;
    color: white;
    font-family: sans-serif;
    font-size: 0.75em;
    display: flex;
    padding-left: 2em;
}