/* Reset some default styles */
body, h1, p {
    margin: 5;
    padding: 0;
}

/* Style the navigation bar */
nav {
    background-color: #113197;
    color: white;
    text-align: center;
    padding: 10px 0;
}

nav ul {
    list-style-type: none;
    margin: 0; /* Remove the default margin */
    padding: 0; /* Remove the default padding */
}

nav li {
    display: inline;
    margin: 0 20px;
    padding: 0; /* Add this line to remove padding */
    height: auto; /* Add this line to adjust the height automatically */
}

nav a {
    color: white;
    text-decoration: none;
}
