*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'open sans';
}
header{
    width: 100%;
    height: 600px;
    background: #941515c4;  
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, hsla(0, 45%, 37%, 0.616), hsla(0, 55%, 10%, 0.712),
     hsla(0, 54%, 30%, 0.651)), url(../Ima/Originales.webp);  
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, hsla(0, 45%, 37%, 0.616), hsla(0, 55%, 10%, 0.712),
    hsla(0, 54%, 30%, 0.651)), url(../Ima/Originales.webp); 
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */    
background-size: cover;
background-attachment: fixed;
position:relative;

}
.wave{
    position: absolute;
    bottom: 0;
    width: 100%;

}
html{
    scroll-behavior: smooth;
}
header .textos-header{
    display: flex;
    height: 430px;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction:column;
    text-align: center;
}
.textos-header h1{
    font-size: 50px;
    color: #fff;
}
nav{
    text-align: left;
    padding-left: 80px;
    margin-bottom: 50px;
}
nav > ol li a{
    color: black;
    font-weight: 300;
    text-decoration:none;
    font-size: 30px;
    margin-right:10px;
    margin-bottom: 50px;

}
nav > ol li a:hover {
    text-decoration: underline;
    color: black;  

}