@font-face {
  font-family: 'Exo 2';
  src: url("Exo_2/Exo2-VariableFont_wght.ttf") format('truetype');
  font-weight: 100 900;  /* soporta de 100 a 900 */
  font-style: normal;
}

@font-face {
  font-family: 'Exo 2';
  src: url("Exo_2/static/Exo2-Italic.ttf") format('truetype');
  font-weight: 100 900;
  font-style: italic;
}


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;

}

body{
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0;  
    margin:0;
}



header{
    flex-basis: 12vh;
    display: flex;
    justify-content: flex-start;
    background: #512e04;
    align-items: center;
    padding: 0 15px 0 15px;

}



.name{
    color: #ffb400;
    margin-left: 1rem;
    font-family: 'Exo 2', sans-serif;
    font-size: 1.3rem;
    font-weight: bold;
    
}


.menu{
    display: flex;
    align-items: center;
    font-family: 'Exo 2', sans-serif;
    text-transform: uppercase;
    font-size: 1.5rem;
    list-style: none;
    
}

a{
    color: white;
}

.menu li{
    padding-left: 3rem;
}

.menu a{
    text-decoration: none;  
}

.menu a:hover{
    color: #ffb400;
    transition: 0.5s;
}




/*------------CONTENIDO -----------*/

main{
    flex-basis: 75vh;
    display: flex;
    flex: 1;
}

.contenido{
    flex-basis: 75%;
    padding: 0 15% 0 15%;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items:start;
    margin-left: 0%;

}

.frase{
    font-family: 'exo 2', sans-serif;
    font-size: 4rem;
    color:#512e04;
    font-style: normal;
    font-weight: normal;
   
    
    
}

.frase2{
    font-family: 'exo 2', sans-serif;
    font-size: 5rem;
    color:#ffb400;
    font-weight: bold;
    
}

.parrafo{
    font-family: 'exo 2', sans-serif;
    font-size: 1.5rem;
    color:#512e04;
    margin-top: 1.5rem;
    
}

.boton1{
    margin-top: 2rem;
    padding: 0.8rem 3rem;
    font-family: 'exo 2', sans-serif;
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
    border: #8f602c solid 2px;
    background: #8f602c;
    border-radius: 25px;
    cursor: pointer;

}

.boton1:hover{
    background: #ffb400;
    color: white;
    border: white solid 2px;
    transition: 0.5s;
}

.boton2{
    margin-top: 2rem;
    padding: 0.8rem 3.5rem;
    font-family: 'exo 2', sans-serif;
    font-size: 0.8rem;
    font-weight: bold;
    color: #8f602c;
    background: white;
    border:#8f602c solid 2px;
    border-radius: 25px;
    cursor: pointer;
}

.boton2:hover{
    background: #ffb400;
    color: white;
    border: white solid 2px;
    transition: 0.5s;
}



/*-----------FOOTER-----------*/
footer{
    flex-basis: 8vh;
    display: flex;
    align-items: center;
    justify-content:start;
    margin-top: 0%;
    text-align: left;
    font-family: 'exo 2', sans-serif;
    font-size: 14px;
    color: black;
    padding: 5px 0 0 15px;
}





















/*-----------IMAGEN HAMBURGUESA-----------*/
.imagen {
    position: absolute;
    top: 0;
    right: 0;
    height: 100vh;         
}