* {
    margin: 0%;
}

body {
    background-color: hsl(30, 54%, 90%);
    color: hsl(30, 10%, 34%);
    font-family: "Outfit", sans-serif;
    line-height: 24px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    margin: 123px 124px;
}


.card {
    background-color: white;
    width: 656px;
    padding: 40px;
    border-radius: 20px;
}

.image-container {
    width: 656px;
    height: 300px;
    background-color: white;
}

.image {
    width: 100%;
    border-radius: 10px;
}

.content-container {
    padding-top: 42px;
}

.main-heading {
    font-family: 'Young Serif';
    font-weight: 400;
    font-size: 40px;
    line-height: 36px;
    color: hsl(24, 5%, 18%);
}

.subheading {
    font-family: 'Young Serif';
    font-weight: 400;
    font-size: 28px;
    line-height: 40px;
    color: hsl(14, 45%, 36%);
}

ul {
    margin-top: 14px;
    padding-left: 20px;
}

ol {
    margin-top: 14px;
    padding-left: 20px;
}

li {
    padding-left: 20px;
    margin-bottom: 8px;
}

ul li::marker {
    font-size: 11px;
    color: hsl(14, 45%, 36%);
    position: absolute;
    list-style-position: outside;
}

ol li::marker {
    color: hsl(14, 45%, 36%);
    font-family: 'Outfit';
    font-weight: 600;
    font-size: 16px;
}

hr {
    border-top: 1px solid hsl(30, 18%, 87%);
    margin: 32px 0px 26px;
}

/*INTRODUCTION*/

.introduction {
    margin-bottom: 26px;
}

.introduction p {
    margin: 25px 0 32px;
}

.prep-time {
    padding: 24px 28px;
    background-color: hsl(330, 100%, 98%);
    border-radius: 10px;
    height: 125px;
}

.prep-time h2 {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    color: hsl(332, 51%, 32%);
}

.prep-time ::marker {
    color: hsl(332, 51%, 32%);
}

/*INGREDIENTS*/

.ingredients-list ul {
    margin-top: 18px;
}

/*INSTRUCTIONS*/

/*NUTRITION*/

.nutrition-table p {
    margin:  18px 0 12px;
}

table {
    text-align: left;
    border-collapse: collapse;
    width: 100%;
    height: 192px;
}

th {
    border-bottom: 1px solid hsl(30, 18%, 87%);
    padding: 0 36px 0 32px;
    font-weight: 400;
}

td {
    color: hsl(14, 45%, 36%);
    border-bottom: 1px solid hsl(30, 18%, 87%);
    padding: 0 34px;
}

@media only screen and (max-width: 768px) {

    
    body {
        margin: 0%
    }
    
    
    .card {
        width: 375px;
        padding: 0%;
        border-radius: 0;
    }
    
    .image-container {
        width: 375px;
        height: 171px;
    }
    
    .image {
        border-radius: 0%;
    }
    
    .content-container {
        padding: 39px 32px 28px;
    }
    
    .main-heading {
        font-size: 36px;
    }
       
    .introduction p {
        margin: 25px 0 32px;
    }
    
    .prep-time {
        padding: 22px 24px;
        height: 152px;
    }
    
}