* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

: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%);
}

body {
    background-color: var(--Stone-100);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

li {
    padding-left: 0.6rem;
}

.container {
    display: block;
    width: 30rem;
    border-radius: 1rem;
    margin: 10rem 0;
    background-color: var(--white);
}

.image {
    display: block;
    width: 27rem;
    border-radius: 0.8rem;
    justify-self: center;
    margin: 1.4rem 0;
}

h1 {
    font-family: "Young Serif", serif;
    font-weight: 400;
    margin: 0 0 1rem 1.5rem;
}

.under-h1 {
    font-size: 0.7rem;
    margin: 0 0 1.4rem 1.5rem;
    font-family: "Outfit", sans-serif;
}

.Prep-time-container {
    display: block;
    justify-self: center;
    font-family: "Outfit", sans-serif;
    width: 27rem;
    font-size: 1rem;
    margin: 0 0 1.4rem 0;
    padding: 1rem 0.5rem;
    border-radius: 0.5rem;
    background-color: var(--Rose-50);
}

.Prep-time {
    display: grid;
    row-gap: 0.5rem;
    margin: 0 0 0 1.5rem;
}

.Prep-time>p {
    color: var(--Rose-800);
}

.Prep-time-list {
    display: grid;
    row-gap: 0.5rem;
    font-size: 0.7rem;
    margin: 0.2rem 0 0.2rem 1rem;
}

.Ing-container {
    
    display: block;
    justify-self: center;
    width: 27rem;
    margin: 0 0 1.4rem 0;
}

.Ing-container>p {
    font-family: "Young Serif", serif;
    font-size: 1.2rem;
    color: var(--Brown-800);
}

.Ing-list {
    font-family: "Outfit", sans-serif;
    display: grid;
    row-gap: 0.4rem;
    font-size: 0.75rem;
    margin: 1rem 0 1rem 1rem;
}

.Ins-container {
    font-family: "Young Serif", serif;
    display: block;
    justify-self: center;
    width: 27rem;
    margin: 0 0 1.4rem 0;
}

.Ins-container>p {
    font-family: "Young Serif", serif;
    font-size: 1.2rem;
    color: var(--Brown-800);
}

.Ins-list {
    font-family: "Outfit", sans-serif;
    display: grid;
    row-gap: 0.4rem;
    font-size: 0.75rem;
    margin: 1rem 0 1rem 1rem;
}

.footer {
    font-family:  "Outfit", sans-serif;
    display: block;
    justify-self: center;
    width: 27rem;
    margin: 0 0 1.4rem 0;
}

#header {
    font-family: "Young Serif", serif;
    font-size: 1.2rem;
    color: var(--Brown-800);
}

p {
    font-size: 0.75rem;
}


.footer>div {
    font-size: 0.75rem;
}

.container-footer {
    margin: 1rem 0;
    display: grid;
    row-gap: 0.5rem;
}

.container-footer>div {
    display: flex;
    justify-content: space-between;
    width: 13rem;
    margin: 0 2rem;
}

.container-footer>div>p {
    color: var(--Rose-800);
    font-weight: 600;
}