body {
    font-family: Arial, sans-serif;
    background-color: #002000;
    color: #004000;
    margin: 0;
    padding: 0;
}

a.body {
    text-decoration: none;
    color: blue;
    background: none;
}

a.body:visited {
    text-decoration: none;
    color: blue;
    background: none;
}

a.body:hover {
    text-decoration: underline;
    color: red;
    background: none;
}


.container {
    width: 900px;
    margin: 0 auto;
}

header {
    background-color: #800000;
    text-align: center;
}

header .logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
}

nav.navbar {
    background-color: #800000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 55px; /* Height of the navbar */
    margin: 0;
    padding: 0;
}

nav.navbar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    width: 100%; /* Ensure ul takes full width of the navbar */
}

nav.navbar ul li {
    display: flex; /* Use flexbox for list items */
    align-items: center; /* Center items vertically */
}

nav.navbar ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 2.2em; /* Bumped up from 1.9em */
    padding: 0 20px;
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
}

nav.navbar ul li a.chownow-order {
    font-size: 2.7em; /* Larger font size for ORDER */
}

nav.navbar ul li a:hover {
    color: #FFFF00; /* Bright yellow font color on hover */
    background-color: #800000; /* Keep background color same on hover */
}
