nav li {
margin: 0 10px;
}
nav {
display: horizontal;
justify-content: center; /* or use space-between, space-around as needed */
list-style: none;
padding: 0;
margin: 0;
}
nav li a {
display: block;
padding: 10px 20px;
background-color: #9caf88; /* grey-sage / color: #f5f1e9; / light cream / text-decoration: none; border-radius: 0; / rectangle shape */
transition: background-color 0.3s ease;
}
nav li a:hover {
background-color: #014d4d; /* dark teal / color: #f5f1e9; / keep text light cream on hover */
}
nav {
display: flex;
justify-content: center; /* or use space-between, space-around as needed */
list-style: none;
padding: 0;
margin: 0;
}
nav ul {
display: flex;
padding: 0;
margin: 0;
list-style: none;
}
nav ul li {
margin: 0 15px; /* spacing between menu items */
}
header {
display: flex;
justify-content: center; /* center the nav horizontally in the header */
align-items: center;
}