.exo-2-font> {
    font-family: "Exo 2", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;

}




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Exo 2', sans-serif;


}



body {
    height: 99.5vh;
    display: flex;
    flex-direction: column;
}




header {
    flex-basis: 10vh;
    display: flex;
    justify-content: flex-start;
    background-color: #512e04;
}



.titulo {
    color: #FFB400;
    font-size: 1.2rem;
    padding: 1rem;
}
.titulo h2{
    font-weight: 900;
}


.menu {
    display: flex;
    align-items: center;

    color: white;
    list-style: none;
    
}

.menu li {
    padding-right: 5rem;
    
}


.menu a {
    font-size: 1.1rem;
    text-decoration: none;
    color: white;
}

.menu a:hover {
    color: #FFB400;
}

ul {
    margin-left: 1.5%;
}


/****************************************/

main {
    flex-basis: 90vh;
    display: flex;
}

.contenido {
    flex-basis: 10vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 9.5%;
}

.txtSec {
    font-size: 4rem;
    color: #512e04;

}
.cont {
    color: #512e04;
    font-size: 1.5rem;
    margin-top: 2%;
    margin-bottom: 2%;
}



.contenido h1 {
    font-size: 4.5rem;
    color: #FFB400;
    font-weight: 900;
}



.boton {
    margin-top: 2%;
}

.btnLl, .btnR{
    border: 2px solid #8f602c ;
    border-radius: 50px;
    font-weight: 800;
    width: 160px;
    height: 40px;
    transition: background 0.5s;
}

.btnR {
    background-color: #8f602c;
    color: white;

}

.btnLl {
    color: #8f602c;
    background-color: white;
}

.btnR:hover, .btnLl:hover {
    background-color: #512e04;
    border-color: #512e04;
    cursor: pointer;
    color: white;
}



footer {
    display: flex;
    flex-basis: 4vh;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 0.5%;
    font-size: 1rem;
}

/****************************************/
.fondo {
    position: absolute;
    top: -64px;
    right: 0;
    z-index: 1;
    height: 107%;
}