.header {
    background: linear-gradient(150deg,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 1) 10%,
            rgba(20, 20, 20, 1) 50%,
            rgba(20, 20, 20, 1) 100%);
    position: sticky !important;
    margin-bottom: 0 !important;
}
 
.header a.dropdown-item {
    margin: 0 !important;
}

.navbar {
    display: flex;
    align-items: center;
    padding: 0 30px !important;
}

.navbar .logo,
footer .logo {
    text-align: center;
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 900;
    font-family: "Reem-Kufi", "Ubuntu", "Segoe UI", arial, serif;
}

.navbar .logo a,
footer .logo a {
    white-space: nowrap;
}

footer .logo .tagline {
    margin: 0;
    font-size: 0.6rem;
    line-height: normal;
    font-family: "Caveat", "Ubuntu", "Segoe UI", arial, serif;
}

.navbar .logo a:hover,
footer .logo a:hover {
    color: var(--fg-pink);
}

.navbar .nav-items {
    display: flex;
    align-items: center;
    margin: 0;
    width: 100%;
}

.navbar .nav-items li {
    list-style: none;
}

.navbar .nav-items li a,
.nav-toggle-btn {
    background-color: var(--trans-white) !important;
    color: var(--fg-white);
    border-radius: 5px;
}

.navbar .nav-items li a:hover,
.nav-toggle-btn:hover {
    background-color: var(--background-light) !important;
    color: var(--fg-white);
    border-radius: 5px;
}

footer {
    background: rgb(0, 0, 0);
    background: linear-gradient(192deg,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 1) 10%,
            rgba(20, 20, 20, 1) 60%,
            rgba(20, 20, 20, 1) 100%);
    /* position: absolute;
    right: 0;
    bottom: 0;
    left: 0; */
}

footer .social-link {
    font-size: 2rem;
    margin: 0.6rem;
}

footer a.text-muted:hover {
    color: var(--fg-white) !important;
}

@media screen and (max-width: 575px) {
    .navbar .nav-items {
        display: none;
    }

    .navbar .logo {
        margin-right: auto !important;
    }

}

.dropleft .profile-dropdown.dropdown-menu {
    top: 90% !important;
    right: 90% !important;
}