*{
    box-sizing:border-box;
}

body{
    font-family:tahoma, Arial;
    background:#f5f5f5;
    margin:0;
    text-align:center;
}

header{
    background:#e91e63;
    color:white;
    padding:25px;
}

.menu{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
    padding:20px;
}

.food{
    background:white;
    width:250px;
    padding:15px;
    border-radius:15px;
    box-shadow:0 3px 10px #ccc;
}

.food img{
    width:100%;
    border-radius:10px;
}

button{
    background:#e91e63;
    color:white;
    border:0;
    padding:12px 25px;
    border-radius:10px;
    cursor:pointer;
    font-size:16px;
}

button:hover{
    background:#c2185b;
}

h2{
    margin:20px;
}
