body {
    font-family: 'Georgia', serif;
    background-color: #fff8f0;
    color: #5a3e1b;
    margin: 0;
    padding: 0;
    text-align: center;
}

.receta-card {
    background: #fff2e6;
    max-width: 600px;
    margin: 40px auto;
    padding: 25px;
    box-shadow: 0 0 15px rgba(154, 94, 26, 0.3);
    border-radius: 12px;
    text-align: left;
}

.receta-card h1, .receta-card h2 {
    color: #7b4f00;
}

.receta-card ul {
    list-style: disc inside;
    margin-bottom: 20px;
}

.receta-card ol {
    margin-bottom: 20px;
}

.receta-card img {
    display: block;
    margin: 0 auto 20px auto;
    border-radius: 12px;
    box-shadow: 0 0 10px #c9a15d;
}

a.boton {
    background-color: #d67f26;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
    font-weight: bold;
}

a.boton:hover {
    background-color: #b15f00;
}
