
*{
    box-sizing: border-box;
    font-family: "Exo 2", sans-serif;
}

body{
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: white;
    margin: 0%;
}

header{
    flex-basis: 15vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: 0%;
    align-content: center;
    background: #512e04;
    justify-content: flex-start;
}

.titulo1{
    display: flex;
    text-decoration: none;
    list-style: none;
    color: #ffb400;
    padding-left: 1rem;
    font-weight: bold;
    font-size: 1.2rem;
}

header ul{
    display: flex;
    list-style: none;
    justify-content: center;
}

header ul li{
    display: flex;
    padding-left: 3rem;
}

a{
    text-decoration: none;
    color: white;
    padding: 0.5rem 0.5rem 0.5rem 0.5rem;
    transition: background 1s;
    transition: color 1s;
    border-radius: 20px;
}

a:hover{
    text-decoration: none;
    padding: 0.5rem 0.5rem 0.5rem 0.5rem;
    color: #ffb400;
    background: #8f602c;
    border-radius: 20px;
}

main{
    display: flex;
    flex-basis: 80vh;
    flex-direction: column;
    align-items: flex-start;
    justify-content:center;
    padding-left: 10rem;
    padding-right: 40rem;
}

.resalta{
    display: flex;
    text-decoration: none;
    list-style: none;
    color: #ffb400;
    font-size: 4rem;
    font-weight: bold;
    margin-top: 0%;
    margin-bottom: 1rem;
}

.resaltante{
    display: flex;
    text-decoration: none;
    list-style: none;
    color: #512e04;
    font-size: 3rem;
    margin-bottom: 0%;
    font-weight: normal;
}

main p{
    margin-top: 0rem;
    color: #512e04;
}

.botones{
    display: flex;
    flex-direction: row;
    width: 6rem;
}

.exo-2{
    font-family: "Exo 2", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
}

#boton1{
    background: #8f602c;
    color: white;    
    padding: 6px 2rem 6px 2rem;
    border: 2px solid #8f602c;
    border-radius: 10px;
    transition: background 0.5s;
}

#boton2{
    margin-left: 0.5rem;
    background: white;
    color: #512e04;    
    border: 2px solid #8f602c;
    padding: 6px 2rem 6px 2rem;
    border-radius: 10px;
    transition: background 0.5s;
}

#boton1:hover{
    background: white;
    color: #ffb400;
    border: 2px solid #8f602c;
}

#boton2:hover{
    background: #512e04;
    color: #ffb400;
    border: 2px solid #8f602c;
}

img{
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 30.5%;
}