@font-face {
    font-family: exo;
    src: url("Exo2-VariableFont_wght.ttf");
}

*{
    font-family: exo, sans-serif;
}

body{
    height: 100vb;
    display: flex;
    flex-direction: column;
}

header{
    background: #512e04 ;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
    padding: 0.85em 2rem 1rem 2rem;
   
}

.nom h2{
    color: #ffb400;
    font-size: 1.5rem ;
    font-weight: 900;
    line-height: 1.5;
    margin-bottom: 0.5px;
    margin-top: 0.5px;
    margin-left: 2px;
}


.op{
    display: flex;
    align-items: center;
    list-style: none;
    gap: 3.5rem ;
    margin-right: 500px;
}

.op li{
    padding-left: 1.2rem;
}

.op a{
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
}

.op a:hover{
    color: #ffb400;
}

/* main */
main{
    display: flex;
    flex-basis: 80vb;
    flex-direction: column;
    padding: 0 0 0 15vb;
}

p.cafe{
    color: #512e04;
    font-size: 3.5rem ;
    text-transform: uppercase;
    margin-bottom: 0;
    margin-top: 10% ;
}

p.ama{
    color: #ffb400;
    font-size: 3.5rem;
    text-transform: uppercase;
    font-weight: 900;
    margin-top: 0;
    margin-bottom: 0.5px;
}

div.d2{
    padding: 0, 0, 0, 15rem;
    display: flex;
    
}

p.tex{
    max-width: 40%;
}

button{
    padding-top: 2px;
    width: 140px;
    border-radius: 20px;
    height: 35px;
    font-weight: bold;
    transition: 0.30s background;
}

button.reservar{
    background:  rgb(139, 111, 73) ;
    color: aliceblue;
    border: none;
}

button.reservar:hover{
    background: #512e04 ;
}

button.llevar{
    border-color: rgb(139, 111, 73) ;
    background: white;
}

button.llevar:hover{
    border-color: #512e04;
    background: whitesmoke;
}

.imagen{

    height: 100%;
    position: absolute;
    align-items: flex-end;
    z-index: 1;
    right: -2rem;
    top: 0;
    bottom: 0;
}


footer{
    color: gray;
    display: flex;
    flex-basis: 8vb;
    align-items: flex-end;
    
}