body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.navbar {
    background-color: #007bff; /* Blue color */
    overflow: hidden;
    padding: 10px 0;
    text-align: center;
}

.navbar a {
    color: white;
    text-decoration: none;
    padding: 14px 20px;
    display: inline-block;
    font-size: 18px;
}

.navbar a:hover {
    background-color: #0056b3; /* Darker blue on hover */
    border-radius: 5px;
}

.site-title {
    color: white;
    font-size: 24px; /* Bigger text */
    font-weight: bold;
    margin-right: 20px; /* Spacing from menu items */
    text-transform: uppercase; /* Optional: Makes it look more like a title */
}