body {
    background-color: #151618;
}

.boton-volver-inicio-total {
    background-color: aqua;
    text-decoration: none;
    color: black;
    border-radius: 30px;
    padding: 2%;
    font-family: monospace;
    font-size: 1rem;
    margin-top: 5px;
    display: inline-block;
    box-shadow: inset 0 10px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.boton-volver-inicio-total:active {
    background-color: rgb(0, 120, 120);
    transform: scale(0.95);
    box-shadow: inset 0 4px 6px rgba(0, 0, 0, 0.4);
}

.titulo {
    font-family: monospace;
    font-size: 1.9rem;
    text-align: center;
    margin-top: 50;
    color: #ffff;
}

.parrafo-1 {
    text-align: center;
    font-size: large;
    font-family: monospace;
    color: #ffff;
}

.contenedor-card {
    margin-top: 40px;
}

.imagen-comida {
    width: 100%;          
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid aqua;
}

.texto-card {
    font: bold 120% cursive;
    font-size: 20px;
    text-align: center;
    color: #ffff; 
}

.Boton-receta {
    text-decoration: none;
    text-align: center;
    background-color: #242529;
    padding: 20px;
    border-radius: 16px;
    margin: 0;
    font-size: 1.2rem;
    color: aqua;
    font-weight: bold;
    font-family: sans-serif;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.Boton-receta:active {
    background-color: rgb(0, 120, 120);
    transform: scale(0.95);
    box-shadow: inset 0 4px 6px rgba(0, 0, 0, 0.4);
}

.icono-boton {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    object-fit: contain;
}

.Boton-receta {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}