body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5; /* Light grey background */
    color: #333; /* Dark grey text color */
    margin: 0;
    padding: 0;
    text-align: center;
}

header {
    background-color: #333; /* Dark grey background */
    color: #fff; /* White text color */
    text-align: center;
    padding: 20px 0;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: #333; /* Dark grey background */
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul li {
    float: left;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #dd9d49; /* Pop of pink hover color */
}

.content {
    padding: 20px;
    text-align: center;
}

.menu {
    background-color: #fff; /* White background */
    padding: 20px;
    margin: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.menu h2 {
    color: #333;
    font-size: 24px;
}

.menu ul {
    list-style-type: none;
    padding: 0;
}

.menu ul li {
    margin-bottom: 10px;
    font-size: 18px;
}

.menu .item {
    color: #dd9d49; /* Pop of pink item color */
}

/* Header styles for the Drinks Menu page */
.drinks header {
    background-color: #333; /* Dark grey background */
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* Add coffee cup icons to the front and end of the header on the Drinks Menu page */
.drinks header h1::before,
.drinks header h1::after {
    content: '☕ ';
    font-size: 30px;
    margin-right: 5px;
}

/* Header styles for the Pastries Menu page */
.pastries header {
    background-color: #333; /* Dark grey background */
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* Add pastry icons to the front and end of the header on the Pastries Menu page */
.pastries header h1::before,
.pastries header h1::after {
    content: '🥐🍩 ';
    font-size: 30px;
    margin-right: 5px;
}

/* Footer styles */
footer {
    background-color: #8B4513; /* Brown background */
    color: #fff; /* White font color */
    text-align: center;
    padding: 10px 0;
}

.social-media a {
    text-decoration: none;
    margin: 0 10px;
    color: #fff; /* White font color */
}


.seldrinks{
    display: flex;
    justify-content: space-evenly;
    padding: 50px;

}

.seldrinks img{
    display: flex;
    justify-content: space-evenly;
    height: 200px;
    width: auto;
}
.seldrinks p{
    display: flex;
    justify-content: space-evenly;
}

/* Style for the drinks names (pink) */
.seldrinks p {
    color: #000; /* Pink color for drinks names */
    font-weight: normal;
    margin: 0;
}

/* Style for the prices (black) */
.seldrinks p:nth-child(2) {
    color: #dd9d49; /* Black color for prices */
    font-weight: normal;
    margin: 0;
}