*{ 
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
}

html, body{
    height: 100%;
}

body{ 
    background-color: #d9b99b;

}

/* aca inicia el estilo de los botones */
.btn {
    padding: 1rem 2rem;
    font-weight: 700;
    background: rgb(255, 255, 255);
    color: black;
    border-radius: .5rem;
    border-bottom: #fff0db;
    border-right: #fff0db;
    border-top: 2px solid white;
    border-left: 2px solid white;
    transition-duration: 1s;
    transition-property: border-top, 
       border-left, 
       border-bottom,
       border-right,
       box-shadow;
   }
   
   .btn:hover {
    border-top: 2px solid #fff0db;
    border-left: 2px solid #fff0db;
    border-bottom: 2px solid #faf0e6;
    border-right: 2px solid #faf0e6;
    box-shadow: 	#4b3b42 5px 5px, 	#9c8481 10px 10px, #4b3b42 15px 15px;
   }
   /* aca termina el estilo de los botones */

.contenedor-menu{
    background-color: #e4d5b7;
    border: 10px;
    border-color: #e4d5b7;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;

    padding: 3vh;
}

.contenedor-info{

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    column-gap: 10px;

    width: 80%;
    margin: auto;

    padding-top: 0vh;
}
.contenedor-titulo{
    
    height: 50px;
}

.contenedor-titulo h1{
    text-align: center;
    font-size: 5vmax;
}
.foto{
    height: 100%;
    width: 100%;
}