/* google font */
@import url('https://fonts.googleapis.com/css2?family=Raleway&display=swap');

/* my styling goes here */
body {
    background-color: #FEF9E2;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    line-height: 1.6;
    padding: 20px 20px 80px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.back-link {
    display: inline-block;
    margin: 0 auto 20px;
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.back-link:hover {
    text-decoration: underline;
    color: #CC9543;
}

.details-container {
    margin: 0 auto;
    background: hsla(0, 0%, 100%, 0.4);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid;
    border-color: hsla(48, 12.5%, 39.2%, 0.25);
}

h1 {
    color: inherit;
    margin: 0 0 10px 0;
    text-transform: capitalize
}

img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
}

.section-title {
    color: #333;
    border-bottom: 2px solid #A77935;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.ingredients,
.instructions {
    margin-bottom: 30px;
}

.ingredients-list li {
    padding: 8px 0;
}

.ingredients-list li::marker {
    color: #CC9543;
}

.instructions-list li {
    margin-bottom: 15px;
}