body{
    margin: 0;
    padding: 0;
    font-family: arial, sans-serif;
    background: linear-gradient(135deg, #ffffff, #fc1313);
}
.recette {
    max-width: 700px;
    margin: 40px auto;
    background-color: #ffffff;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
h1{
    font-family: Georgia;
    font-size: 2.2rem;
    color: #b23B2a;
    text-align: center;
    margin-bottom: 15px;
    text-decoration: underline;
}
h2{
    font-family: Georgia;
    font-size: 1.4rem;
    color: #444;
    margin-top: 20px;
    margin-bottom: 10px;
    text-decoration: underline;
}
img{
    width: 100%;
    max-width: 100%;
    display: block;
    margin: 0 auto 20px auto;
    border: 3px solid #e58b3b;
    border-radius: 15px;
}
ul{
    list-style-type: disc;
    padding-left: 20px;
    font-size: 1rem;
    color: #333;
}
li{
    margin-bottom: 5px;
}
.étapes{
    font-size: 1rem;
    line-height: 1.4;
    color: #333;
    margin-bottom: 10px;
}
blockquote {
    font-style: italic;
    background-color: #f8f8f8;
    border-left: 4px solid #b23b2a;
    margin: 10px 0;
    padding: 10px 15px;
    color: #555;
}
.recipe-links {
    margin-top: 10px;
    display: grid;
    grid-auto-flow: row;
}

.recipe-tag {
    display: inline-block;
    padding: 6px 12px;
    margin: 4px;
    background-color: #b23b2a;
    color: #fff;
    text-decoration: none;
    border-radius: 999px;           /* forme "pilule" */
    font-size: 0.9rem;
}