:root {
    --fuenteHeading: 'PT Sans', sans-serif;
    --fuenteParrafos: 'Open Sans', sans-serif;
    --primario: #784d3c;
    --blanco: #ffffff;
    --negro: #000000;
    --gris: #e1e1e1;
}

/* imagen de fono */

body {
    background-image: url(../img/1576053099159.webp);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    

}

@media (min-width: 750px) {
    body {
        background-image: url(../img/1576053150053.webp);
    }
}

/* logo  */
.header {
    display: flex;
    justify-content: center;
}

.header_logo {
    margin: 3rem 0;
    width: 100%;
    height: 100%;
    max-width: 200px;
    max-height: 200px;
    border-radius: 100%;
}

/* titulo */
.informacion {
    display: flex;
    flex-direction: column;
    align-items: center;
 
}

.titulo {
    font-family: var(--fuenteHeading);
    font-weight: bold;
    font-size: 3rem;
}

.descripcion h3 {
    text-align: center;
    font-family: var(--fuenteParrafos);
    font-weight: normal;
    font-size: 2rem;
}

/* botones */

.lista_boton {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.boton {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 6px 0px;
    background-color: transparent;
    border: 2px dashed #c44545;
    border-radius: 20px;
    cursor: pointer;
    color: #000000;
    text-decoration: none;
    font-size: 2rem;
    font-family: var(--fuenteParrafos);
    width: 70%;
    height: 50px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.boton:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.img_boton {
    width: 100%;
    height: 100%;
    max-width: 40px;
    max-height: 40px;
    border-radius: 100%;
    margin-left: 30px;
}

.item {
    width: 100%;
    text-align: center;
}

