:root{
    --bwhite: white;
    --bblack: #333;
    --bdwhite: rgb(216, 216, 216);
    --bwriten: black;
    --bwritenb: white;
}
header {
    background-color: var(--bblack);
    color: var(--bwhite);
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}
.logo {
    font-size: 1.5em;
    background-color: black;
    color: white;
}
.logo span{
    color: red;
}
nav {
    display: flex;
}
.nav-links {
    list-style: none;
    display: flex;
    font-size: 14.5px;
}
#home{
    color: red;

}

#modebtn{
    cursor: pointer;
    border: none;
    background-color: black;
    color: white;
}
#divbtn{
    display: inline-block;
    height: 10px;
    width: 10px;
    border-radius: 15px;
    background: red;
}

.nav-links li {
    margin-right: 20px;
    background-color: black;
}
.nav-links li a {
    color: #fff;
    text-decoration: none;
}
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5em;
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #444;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 10px 20px;
        box-sizing: border-box;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .nav-links li:last-child {
        margin-bottom: 0;
    }
    .menu-toggle {
        display: block;
    }
}