@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Young+Serif&display=swap');

:root {
    --white: hsl(0, 0%, 100%);
    --stone-100: hsl(30, 54%, 90%);
    --stone-150: hsl(30, 18%, 87%);
    --stone-600: hsl(30, 10%, 34%);
    --stone-900: hsl(24, 5%, 18%);
    --brown-800: hsl(14, 45%, 36%);
    --rose-800: hsl(332, 51%, 32%);
    --rose-50: hsl(330, 100%, 98%);
}

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

/* global */
body { 
    background-color: var(--stone-100); 
    color: var(--stone-600); 
    font-family: "Outfit", sans-serif;
    font-weight: 300;
    line-height: 1.5;
    font-size: 16px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

main {
    max-width: 736px; 
    border-radius: 20px;
    background-color: var(--white); 
    margin: 40px 20px;
    padding: 40px;
}

h1, h2 { font-family: "Young Serif", serif; font-weight: 400; }

h1 { color: var(--stone-900); margin: 20px 0; line-height: 1; }
h2 { color: var(--brown-800); margin-top: 16px; }
h3 { color: var(--rose-800); }

strong { font-weight: 600; }

ul, ol { padding: 10px 20px; }

li { margin-bottom: 10px; }

li::marker {
    color: var(--brown-800);
}

hr { 
    border: none; 
    height: 1px; 
    background-color: var(--stone-150); 
    padding: 0 20px;
}

img {
    display: block;
    width: 100%;
    border-radius: 12px;
}

.prep-card {
    background-color: var(--rose-50);
    border-radius: 12px;
    padding: 20px 30px 0;
    margin-top: 20px;
}

.prep-list::marker {
    color: var(--rose-800);
    font-weight: bold;
}

table {
    margin-top: 10px; 
    width: 100%;
    border-collapse: collapse;
}

tr:not(:last-child) {  border-bottom: 1px solid var(--stone-150);}
td { padding: 10px; }
td strong { color: var(--brown-800); }

footer {
    text-align: center;
    font-size: 11px;
    margin-bottom: 20px;
}

footer a {
    text-decoration: none;
    font-weight: 700;
    color: var(--rose-800);
}
footer a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 767px) {
    body { background-color: var(--white);}
    main { margin: 0; border-radius: 0; padding: 0;}
    article { padding: 0; }
    hr { width: 80%; margin: 0 auto; }
    img { border-radius: 0;}
    section, .text { margin: 20px 30px; }
}