
nav {
    text-align: center;
    background-color: #f7f7f7;
    padding: 10px 0;
}

/* Styling the unordered list in the nav */
nav ul {
    list-style-type: none;
}

/* Styling the list items in the nav */
nav li {
    display: inline;
    margin: 0 15px;
}

/* Styling the anchor links in the nav */
nav a {
    text-decoration: none;
    color: #333;
    padding: 5px 10px;
    transition: background-color 0.3s;
}

/* Hover effect for the anchor links in the nav */
nav a:hover {
    background-color: #ddd;
}