*{
    font-family: 'Open Sans Condensed', sans-serif;
    margin: 0;
    padding: 0;
}

body{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    background-color: #191919;
    align-items: center;
    margin: 0;
    padding: 0;
    width: 100%;
}

header{
    width: 90%;
    display: flex;
    justify-content: space-between;
}

header titulo{
    display: flex;
    flex-wrap: nowrap;
    width: 700px;
    background-color: #191919;
}

header h1{
    background-color: #191919;
    color: #5a5a5a;
    font-size: 72px;
    font-weight: normal;
    display: inline;
    padding-right: 10px;
}

header h2{
    position: absolute;
    color: #bebebe;
    font-size: 60px;
    font-style: italic;
    font-weight: normal;
    padding-top: 30px;
    margin-left: -10px;
    margin-top: 5px;
    
    display: inline;
    
    z-index: 1;
}

.adorno{
    position: absolute;
    top: 40px;
    border-top-color: #f6f6f6;
    border-top-style: solid;
    border-top-width: thin;
    width: 0%;
    opacity: 0;
    margin-left: 5%;
    margin-right: 0.5%;
    z-index: -1;
}

header nav{
    align-content: space-between;
    margin: 45px 0;
}

header nav ul li{
    margin: 0 5px;
    display: inline;
}

header nav ul li a{
    color: #f6f6f6;
    text-decoration: none;
}

header nav ul li a:hover{
    text-decoration: underline;
}

section{
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.cuadro_central{
    margin: auto auto;
    padding: 100px 10px;
    text-align: center;
}

.cuadro_central p{
    font-size: 14
        px;
    color: whitesmoke;
}

footer{
    bottom: 0;
    color: lightgrey;
    position: absolute;
    font-size: 10px;
    width: 100%;
    border-top-color: grey;
    border-top-style: solid;
    border-top-width: thin;
}

footer p{
    padding: 0 15px;
    text-align: right;
}

footer a{
    color: white;
    text-decoration: none;
}
    