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

* {
    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 {
    margin: 0;
    font-family: "Oufit", sans-serif;
    background-color: var(--Stone-100);
    color: var(--Stone-600);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100dvh;
}

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

h1 {
    color: var(--Stone-900);
}

h2 {
    color: var(--Brown-800);
}

h3 {
    color: var(--Rose-800);
    font-weight: 700;
}

hr {
    background-color: var(--Stone-150);
    margin: 30px 0 ;
}

strong {
    color: var(--Stone-600);
    font-weight: 700;
}

ul, ol {
    padding-left: 1.2rem;
}

li {
    padding: 0 17px;
}

p, li {
    line-height: 1.5;
}

.container {
    max-width: 375px;
    background-color: var(--White);
}

.container img {
    width: 100%;
}

.content-text {
    width: 100%;
    margin: auto;
    padding: 0 28px;
    color: var(--Stone-600);
}

.time-section {
    background-color: var(--Rose-50);
    padding: 1.5rem;
    border-radius: 12px;
}

.time-section h3 {
    margin-bottom: 0.75rem;
}

.time-section li {
    color: var(--Rose-800);
    margin-bottom: 0.5rem;
}

.time-section p {
    color: var(--Stone-600);
    padding: 0;
}

.instruction-section li{
    color: var(--Brown-800);
}

.instruction-section p {
    color: var(--Stone-600);
}

.nutrition-section table {
    width: 100%;
    border-collapse: collapse;
}

.nutrition-section  {
    padding-bottom: 3rem;
}

.nutrition-section td {
    padding: 0.75rem 1.75rem;
    border-bottom: 1px solid #ddd;
}

.nutrition-section strong {
    color: var(--Brown-800);
}

.attribution { 
    font-size: 11px;
    text-align: center; 
    position: relative;
    margin: 20px;
    bottom: 10%;
}

.attribution a { 
    color: hsl(228, 45%, 44%); 
}

@media screen and (min-width: 750px) {
    .container {
        max-width: 750px;
        border-radius: 15px;
        margin-top: 4   rem;
    }

    .container img {
        padding: 28px;
        border-radius: 35px;
    }

    h1 {
        margin: 0;
    }
}






