.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1f2937;
    color: white;
    padding: 1rem .1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-links {
    display: flex;
    color: white;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: rgb(171, 193, 193);
    text-decoration: none;
    font-weight: bold;
}
.active {
    color: white;
    text-transform: uppercase;
}
.nav-link:hover {
    color: #559ede;
}

.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: white;
    font-size: 1.5rem;
}
