body {
    font-family: 'Trebuchet MS', sans-serif;
    background-color: #e8f5e9;
    color: #2e5d27;
    margin: 0;
    padding: 0;
    text-align: center;
}

.receta-card {
    background: #d0f0c0;
    max-width: 600px;
    margin: 40px auto;
    padding: 25px;
    box-shadow: 0 0 15px rgba(46, 93, 39, 0.3);
    border-radius: 12px;
    text-align: left;
}

.receta-card h1, .receta-card h2 {
    color: #1b3a10;
}

.receta-card ul {
    list-style: circle 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 #4caf50;
}

a.boton {
    background-color: #4caf50;
    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: #357a38;
}
