@import url('https://fonts.googleapis.com/css?family=Lato:300,400,700,900');

:root {
    --primario: #C8B8A8;
    --secundario: #E7DCCF;
    --terciario: #F5EFE8;
    --fondo: #FAF7F3;
    --texto: #5A5047;

    --secundario-rgb: #faf7f396;  
    
    --fuente-principal:  'Lato', sans-serif;
}


html {
    font-size: 62.5%;
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}


body {
    font-family: var(--fuente-principal);
    font-size: 1.6rem;
    line-height: 1.8;
}
p {
    color: var(--texto);
    font-size: 2rem;
}
.contenedor {
    width: 98%;
    
    margin: 0 auto;
    
}

a {
    text-decoration: none;
}

img,
picture {
    width: 100%;
    display: block;
}

h1, h2, h3 {
    font-family: var(--texto);
    margin: 2rem 0;
   
    text-align: center;
    
}

h1 {
    font-size: 3.8rem;
    
}
h2 {
    font-size: 3.4rem;
}
h3 {
    font-size: 3rem;
    
}
h4 {
    font-size: 2.6rem;
}

.boton{

    background-color: var(--texto);
    color: var(--terciario);
    font-weight: bold;
    text-decoration:none;
    padding: 1rem 3rem;
    text-align: center;
    margin-top: 2rem;
    border: none;
    border-radius: 1rem;    
    
}


.boton:hover{
    background-color: var(--terciario);
    color: var(--texto);
    cursor: pointer;
    
}


