body {
    margin: 0;
    padding: 20px;
}

.recipe-card {
    max-width: 700px;
    margin: auto;
    background-color: #f7edd2;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.recipe-title {
    text-align: center;
    margin-bottom: 4px;
}

.navigation {
	font-size: 16px;
	text-align: center;
	color: gray;
	margin-bottom: 20px;
}

.image-placeholder {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #665;
    margin-bottom: 20px;
    border-radius: 4px;
}

.image-placeholder img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 4px;
}

.info {
    text-align: center;
    margin-bottom: 20px;
}

section {
    margin-bottom: 25px;
}

h2 {
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
}

ul, ol {
    margin-left: 20px;
}

li {
    margin-bottom: 8px;
}
