nav {
    background-color: #2c3e50;
    box-shadow: 0 0.125rem 0.3125rem rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-container {
    max-width: 75rem;
    margin: 0 auto;
    padding: 0.9375rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site-title {
    color: white;
    font-size: 1.8rem;
    margin: 0;
	margin-right: 3rem;
    font-weight: 700;
}
.nav-links {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}
.nav-links a {
    color: white;
    text-decoration: none;
    padding: 0.625rem 1.25rem;
    border-radius: 0.3125rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}
.nav-links a:hover {
    background-color: #34495e;
    text-decoration: none;
}
.nav-links a.admin-link {
    color: #ff6b6b;
    font-weight: bold;
}
.nav-links a.admin-link:hover {
    background-color: #34495e;
}
.welcome-text {
    color: #5dade2;
    font-weight: 500;
    padding: 0.625rem 1.25rem;
}