:root {
    --Nutmeg: hsl(14, 45%, 36%);
    --Dark-Raspberry: hsl(332, 51%, 32%);
    --White: hsl(0, 0%, 100%);
    --Rose-White: hsl(330, 100%, 98%);
    --Eggshell: hsl(30, 54%, 90%);
    --Light-Grey: hsl(30, 18%, 87%);
    --Wenge-Brown: hsl(30, 10%, 34%);
    --Dark-Charcoal: hsl(24, 5%, 18%);
}

/* Globales */
html {
    font-size: 62.5%;
    box-sizing: border-box;  
}

*, *::before, *::after {
    box-sizing: inherit;
}

body {
    font-size: 16px; 
    font-family: Outfit, sans-serif;
    background-color: var(--Eggshell);
    color: var(--Wenge-Brown);
    position: relative;
}

@media (max-width: 768px) {
    hr {
        width: 90%;
    }   
}

@media (min-width: 768px) {    
    .contenedor {
        max-width: 70rem;
        margin: 15rem 0;
        padding: 3rem;
    }
}

.imagen {
    height: 100%;
    width: 100%;
}

@media (min-width: 768px) {
    .imagen {
        height: 30rem;
        width: 100%;
        border-radius: 15px;
    }    
}

.sombra {
    background-color: var(--White);
}

@media (min-width: 768px) {    
    .sombra {
        box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
        border-radius: 2rem;
        background-color: var(--White);
        height: auto;
    }    
}

hr {
    color: var(--Wenge-Brown);
}

/* Fuentes */
.titulo-principal {
    font-family: 'Young Serif', sans-serif;
    font-size: 4.2rem; 
}

.titulo {
    font-family: 'Young Serif', sans-serif;
    font-size: 3.2;
}

.sub-titulo {
    font-size: 2.2rem;
}

/* Tarjeta Receta */
.tarjeta {
    position: absolute;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
   
}

/*Utilidades*/
.interlineado {
    line-height: 2;
}

.titulo-nutmeg {
    color: var(--Nutmeg);
}

.titulo-dark-raspberry {
    color: var(--Dark-Raspberry);
}

.titulo-dark-charcoal {
    color: var(--Dark-Charcoal);
}

.lista li::marker {
    font-weight: bold;
}

/*Seccion*/
.seccion {
    padding: 0 2rem;
}

.seccion span {
    font-weight: bold;
}

.seccion .tabla {
    display: grid;
    grid-template-columns: repeat(2, 1FR);
}

.tabla p {
    margin-left: 3.2rem;
}

