@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap');


* {
    box-sizing: border-box;
    border: 0;
    padding: 0;
}

body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: "Exo 2";
    padding: 0;
    margin: 0;
}

/*-------------header------------*/

header {
    height: 15vh;
    display: flex;
    justify-content: flex-start;
    background: #512e04;
    align-items: center;
}

.nombre {
    color: #ffb400;
    text-transform: uppercase;
    margin-left: 20px;
    font-size: 1.5rem;
}

.menu {
    display: flex;
    align-items: center;
    font-family: "Exo 2";
    text-transform: uppercase;
    font-size: 2rem;
    list-style: none; 
    margin-left: -40px;
}

.menu li {
    padding-left: 7rem;
    font-family: "Exo 2";
    display: flex;
    justify-content: space-around;
    font-size: 1.5rem;
}

.menu a {
    color: white;
    text-decoration: none;
    transition: color 0.5s;
}

.menu li > a:hover {
    color: #ffb400;
    cursor: pointer;
}

/*----------Contenido-----------*/

main {
    display: flex;
    flex-grow: 1; /*esta propiedad ayuda a crecer el main hasta el footer, "empujándolo" hasta abajo*/
    justify-content: left;
    margin-left: 10%;
}

.contenido {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contenido > h2 {
    color: #512e04;
    text-transform: uppercase;
    font-size: 6rem;
    margin: 0px;
    font-weight: 300; /*en este caso se puede especificar el "grosor" de la letra así*/
}

.contenido > h1 {
    color: #ffb400;
    font-size: 6rem;
    text-transform: uppercase;
    padding: 0px;
    margin: 0px;
    font-weight: 1000; 
}

.contenido > p {
    color: #512e04;
    padding: 0;
    font-size: 2.2rem;
    margin-top: 15px;
}

.imagen img {
    height: 100%;  
}

.imagen {
    height: 102vh; /*se suma el valor de top para que no se corte la imagen abajo*/
    position: absolute; /*para ignorar el flujo de acomodo de los otros elementos*/
    top: -2vh;/*margen negativo*/
    right: 0;
    align-items: flex-start;
    justify-content: right;
}

.botones {
    padding: 2px;
    justify-content: flex-start;
}

.botones button {
    padding: 2% 10% 2% 10%;
    flex-direction: row;
    justify-content: space-around;
    align-self: left;
    border: 5px solid;
    border-radius: 50px;
    font-weight: bold;
    font-family: "Exo 2", serif;
    font-size: 1.5rem;  
    transition: color, background 0.5s;  
}

.botones #btnR {
    color: white;
    background: #8f692c;
} 

#btnR:hover {
    color: #ffb400;
    background: white;
}

.botones #btnLl {
    color: #8f692c; 
    background: white;   
} 

#btnLl:hover {
    background: #ffb400;
    color: white;
}

/*-------Pie de página------------*/

footer { 
    display: flex;
    flex-basis: 5vh;
    align-items: center;
    justify-content: flex-start;
}   

footer p {
    font-size: 1.5rem;
    color: black;
    margin-left: 20px;
}