body {
    font-family: Arial, sans-serif;
}

header h1 {
    font-size: 24px; /* Adjust as needed */
    margin-bottom: 10px;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 10px;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    font-size: 18px; /* Adjust the font size as needed */
    font-weight: bold; /* Make the text bold */
    border: 1px solid #000; /* Draw a border around the menu item */
    padding: 5px; /* Add some padding inside the border */
    border-radius: 5px; /* Optional: Add rounded corners to the border */
}

/* Add some spacing between the menu items */
nav ul li:not(:last-child) {
    margin-right: 15px;
}

footer {
    margin-top: 20px;
    border-top: 1px solid #ccc;
    padding-top: 10px;
}
