* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    background-color: hsl(30, 54%, 90%);
}

.main {
    width: 800px;
    margin: 7em auto;
    background-color: white;
    border-radius: 2%;
    padding: 30px 0;
}

.image,
.Preparation-time,
.ingredients,
.cooking,
.nutrition {
    margin: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 200;
    word-spacing: 2px;
}

h1 {
    color: hsl(14, 45%, 36%);
    font-family: 'Young Serif', sans-serif;
}

.image img {
    display: block;
    width: 700px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

.image p {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
}

.Preparation-time {
    background-color: hsl(330, 100%, 98%);
    padding: 10px;
}

.Preparation-time span,
.cooking span {
    font-weight: 600;
}

.Preparation-time h2 {
    color: hsl(332, 51%, 32%);
}

.Preparation-time li,
.cooking li,
.ingredients li {
    padding-left: 10px;
}

.cooking li::marker,
.ingredients li::marker {
    color: hsl(14, 45%, 36%);
    font-weight: 500;
}

.main hr {
    width: 80%;
}

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

.nutrition table tr:not(:last-child) {
    border-bottom: 1px dashed black;
}

.nutrition table td {
    padding: 8px;
}

@media (max-width:768px) {
    .main {
        width: 600px;
        padding: 20px 0;
    }
    .image,
    .Preparation-time,
    .ingredients,
    .cooking,
    .nutrition {
        margin: 40px;
        font-weight: 200;
        word-spacing: 1.5px;
    }
    .image img {
        width: 500px;
    }
}

@media (max-width:480px) {
    .main {
        width: 100%;
        padding: 10px 0;
    }
    .image,
    .Preparation-time,
    .ingredients,
    .cooking,
    .nutrition {
        margin: 30px;
        font-weight: 150;
        word-spacing: 1.2px;
    }
    .image img {
        width: 300px;
    }
}