/* Centering the menu */
.main-navigation ul {
display: flex;
justify-content: center;
}
/* Enabling hover effects for menu items */
.main-navigation ul li a:hover {
/* Your hover styles here */
color: #ff0000; /* Example: Change text color on hover */
}
/* Positioning the logo at the top */
.site-logo {
display: block;
margin: 0 auto;
text-align: center;
}