@font-face {
    font-family: 'exo2';
    src: url("Exo2-Regular.otf") format("opentype");
}


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {

    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    
    background: white;

}

header {

    flex-basis: 12vh;
    display: flex;
    justify-content: left;
    background: #512e04;

}

.logo {

    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: left;
    padding: 1rem;
   
}

.logo h3 {
    font-family: exo2, sans-serif;
    color: #ffb400;
    font-size: 1.5rem;
}


.menu{
    display: flex;
    align-items: center;
    font-family: exo2, sans-serif;
    font-size: 1.2rem;
    color: white;
    list-style: none;
    

}

.menu li{
    padding-left: 4rem;
    
}

.menu a{
    text-decoration: none;
    color: white;
}
.menu a:hover{
    color: #ffb400;
}

main {

    flex-basis: 75vh;
    display: flex;

}
.contenido{
    flex-basis: 55%;
    padding: 0 12% 0 12% ;
    justify-content: center;
    display: flex;
    flex-direction: column;
}
.contenido h1{
    font-family: exo2, sans-serif;
    font-size: 3.5rem;
    color:#512e04;
    text-align: left;
    padding-top: 80px;
}
.contenido h2{
     font-family: exo2, sans-serif;
    font-size: 4rem;
    color:#ffb400;
    text-align: left;
}
.contenido p{
    color: #512e04;
    text-align: left;
    font-size: 1.2rem;
    padding-top: 20px;
}
.buton{
    padding-top: 10px;
}
.buton button{
    border: none;
    color: white;
    background: #8f602c;
    width: 150px;
    border-radius: 20px;
    padding: .7rem 0 .7rem 0;
    font-weight: bold;
    font-family: exo2, sans-serif;
    margin: auto;
    display: block;
    transition: background 0.5s;
    border: 3px solid #8f602c;

}
.buton button:hover{
    background: #ffb400;
    cursor: pointer;
}

.botones {
  display: flex;
  gap: 3px;
  margin-top: 10px;
}

.buton2{
    padding-top: 10px;
    
}
.buton2 button{
    background: white;
    color: #8f602c;
    width: 150px;
    border-radius: 20px;
    padding: .7rem 0 .7rem 0;
    font-weight: bold;
    font-family: exo2, sans-serif;
    margin: auto;
    display: block;
    transition: background 0.5s;
  
    border: 3px solid #8f602c;

}
.buton2 button:hover{
    background: #ffb400;
    cursor: pointer;
}
.imagen {
    position: absolute;
    top: -40px;     
    right: 0;
    z-index: 10;
     width: 490px; 
}

footer {

    flex-basis: 8vh;
    display: flex;
    align-items:center;
    justify-content:flex-start;

}

footer p {
    font-family: exo2, sans-serif;
    font-size: 1rem;
    color: black;
    padding-top: 100px;
    padding-left: 20px;
}


