*{
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    background-color: beige;
    color: black;
}
.cabeza{
    margin-top: auto;
    font-size: 5vmin;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    color: rgb(248, 215, 172);
    position: sticky;
}
h1{ font-size: 13vmin;
    font-style: normal;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 250;
    text-align: center;
    color: rgb(248, 215, 172);
    border-bottom:solid;
    border-color: whitesmoke;
}
/* Diseño del nav */
.botones{ 
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}
/* From uiverse.io */
button {
    padding: 1.3em 3em;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    color: #000;
    background-color: #fff;
    border: none;
    border-radius: 45px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
}
  
  button:hover {
    background-color:rgb(248, 215, 172) ;
    box-shadow: 0px 15px 20px rgb(248, 215, 172);
    color: #fff;
    transform: translateY(-7px);
}
  
  button:active {
    transform: translateY(-1px);
  }
.presentacion{
    display: flex;
    margin: auto;
    align-items: center;
    justify-content:space-around;
    width: 57vw;
    font-size: 2.5vmin;
}
.foto{
    width: 40vh;
}
.texto{
    width:30%;
}
.primer_parrafo {
    text-align: center;
    font-size: 2.5vmin;
    color:black;
}
.segundo_parrafo{
     text-align: center;
     font-size: 2.5vmin;
     color: black;
}
.pie{
    margin-top: 1vw;
    font-size: 5vmin;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    color: rgb(248, 215, 172);
    justify-content: center;
    position: sticky;
}