@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --fuentePrincipal: 'Montserrat', sans-serif;
    --primario: #705F7D;
    --blanco: #ffffff;
    --negro: #252525;
    --fondo: #b9abb2;
    --complementoFondo: linear-gradient(75deg, #b9abb2 0%, #705f7d 50%, #0c0c0c 100%);
}

html {
    box-sizing: border-box;
    font-size: 62.5%;
    scroll-behavior: smooth;
}

*,
*:before,
*:after {
    box-sizing: inherit;
    padding: 0;
    margin: 0;
}

body {
    font-family: var(--fuentePrincipal);
    line-height: 2;
    background-color: var(--fondo);
    background-image: var(--complementoFondo);
}

/**globales**/

.contenedor {
    max-width: 120rem;
    width: 90%;
    margin: 0 auto;
}

a {
    text-decoration: none;
}

ul,
li {
    text-decoration: none;
}

h1,
h2,
h3,
h4 {
    font-family: var(--fuentePrincipal);
    line-height: 1.2;
}


h1 {
    font-size: 4.8rem;
}

h2 {

    font-size: 4rem;
}

h3 {

    font-size: 3.2rem;
}

h4 {

    font-size: 2.8rem;
}

img {
    max-width: 100%;

}

/**utilidades**/

.centrar-texto {
    text-align: center;
}

/**utilidades**/