@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

body {
    font-family: 'Lato', sans-serif;
    background-color: #1b1f23; /* Dark background for the body */
    color: #c9d1d9; /* Lighter text color for good contrast on dark background */
}

/* General link styling */
a {
    color: #58a6ff; /* Bright blue for all links, matching the header */
    text-decoration: none; /* Removes underline from links */
}

a:hover {
    color: #bfdbfe; /* Lighter blue for hover states, matching the header */
    text-decoration: underline; /* Optional: Adds underline on hover for better interaction visibility */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    background-color: #2d333b; /* Slightly lighter dark shade for the header for subtle contrast */
}

.site-title a, .site-nav a {
    margin-right: 15px; /* Ensures spacing for site-nav links */
}

.site-title {
    flex-grow: 1;
}

.site-nav {
    flex-grow: 2;
    text-align: right;
}

.site-nav a {
    margin-left: 15px; /* Retains spacing between navigation links */
}
