html, body {
    margin: 0;
    padding: 0;
    font-family: 'Pacifico', cursive;
    background-color: #F5E8D0; 
    color: #333;
    line-height: 1.6;
}

#menu {
    padding: 40px 20px;
    text-align: center;
   
}
h1{
    text-align:center; 
    color:#004C70; 
    font-size: 4em;
}

p, h3{
    font-size: 1.5em;
}
ul {
    font-size: 1.5em;
}
.carte {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.menu {
    width: 300px;
    border: 5px solid #004C70; 
    border-radius: 15px; 
    background-color: #e6f7ff; 
    padding: 20px;
    text-align: center;
    color:#004C70; 
    
}


.menu img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}


button {
    margin-top: 10px;
    padding: 10px 20px;
    border: none;
    background-color: #007acc; 
    color: white;
    border-radius: 25px; 
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
}


button:hover {
    background-color: #005fa3; 
}

