*{
    margin: 0;
    padding: 0;
}
body{
    position: relative;
    background-color: beige;
    font-family: 'georgia', serif;
    color: black;
}
header{
    background: url('../img/banner.jpg') center;
}
header h1{
    font-family: 'Courier New', Courier, monospace;
    font-size: 3em;
    font-weight: bold;
    color: white;
    text-shadow: 4px 4px 8px #000000;
}
#titulo{
    display: inline-block;
}
#logo{
    height: 250px;
}
#logo, header h1{
    display: inline-block;
    margin-bottom: 0px;
    height: 140px;
}

nav{
    display: inline-block;
    width: 100%;
    height: 40px;
    text-align: right;
    background-color: rgb(88, 88, 88);
}
nav ul{
    list-style-type: none;
}
nav li{
    display: inline-block;
    margin-right: 15px;
}
nav a{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.3em;
    color: #ebebeb;
    padding-bottom: 3px;
    text-decoration: none;
}
nav a:hover{
    color: #f78d14;
    border-bottom: 3px solid #568ef7;
}
#perfil{
    height: 350px;
    position: relative;
    left: 6.5%;
    border-radius: 20px;
}
article{
    padding: 10px;
}
section{
    padding: 10px;
    margin-left: auto;
    margin-right: auto;
    float: left;
    width: 75%;
}
p{
    font-size: large;
}
aside{
    padding: 5px;
    font-style: italic;
    float: right;
    width: 20%;
    border: 2px solid;
    border-radius: 5px;
}
footer{
    float: left;
    position: relative;
    bottom: 0;
    width: 100%;
    height: 100px;
    box-sizing: border-box;
    border-top: 2px solid black;
    background-color: #66FF33;
    color: black;
    text-align: center;
    padding-top: 10px;
}
footer p{
    margin-top: 25px;
}
#lista{
    font-size: large;
    margin-left: 20px;
}