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

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

body {
    margin: 0;
    background-color: hsl(30, 54%, 90%);
    font-family: 'outfit';
    min-height: 100vh;
}

img {
    width: 100%;
    border-radius: 10px;
}

.menu-container {
    background-color: hsl(0, 0%, 100%);
    border-radius: 2rem;
    max-width: 650px;
    min-width: 375px;
    padding: 2rem;
    margin: 40px auto;
}

.preparation-list {
    background-color: hsl(330, 100%, 98%);
    border-radius: 10px;
    padding: 1rem;
}

h1 {
    font-family: 'young serif';
    font-weight: 400;
    
}

h2 {
    font-family: 'young serif';
    color: hsl(14, 45%, 36%);
    font-weight: 400;
}

h3 {
    text-indent: 1.2rem;
    color: hsl(332, 51%, 32%);
}

ol li {
    margin-left: -1rem;
    padding-left: 1rem;
}

ul li {
    text-indent: 1rem;
    margin-bottom: 10px;
}

li {
    margin-bottom: 1rem;
    color: hsl(30, 10%, 34%)
}

li::marker {
    color: hsl(14, 45%, 36%);
    font-weight: bold;
}

.item {
    padding-left: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.highlight {
    color: hsl(14, 45%, 36%);
    font-weight: bold;
}

p {
    color: hsl(30, 10%, 34%)
}