:root { /* DARK THEME */
    --background-col: rgb(39, 38, 53);
    --primary-col: rgb(220, 220, 220);
    --secondary-col: rgb(205, 205, 205);
    --a-color: #38b4ff;
}

[theme="light"] {
    --background-col: rgb(214, 214, 214);
    --primary-col: rgb(39, 38, 53);
    --secondary-col: rgb(57, 56, 71);
    --a-color: #007ac4;
}

body  {
    background-color: var(--background-col);
    margin: 0;
}

#nav-wrapper {
    position: fixed;
    inset: 0 0 auto 0;
    margin: 0.5rem;
    transition: 200ms ease;
    display: flex;
    justify-content: center;
    z-index: 5;
}

#nav-grid {
    display: flex;
    column-gap: 0.5rem;
    border: 1px solid white;
    width: min-content;
    padding: 0.2rem;
    border-radius: 2rem;
    box-shadow: 0px 0px 8px var(--primary-col);
    background-color: var(--background-col);
    /* grid-template-columns: repeat(4, 1fr); */
    /* justify-content: space-between; */
    /*box-shadow: 0 0 100px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);*/
}

.nav-btn {
    padding: 0.5rem 1.5rem;
    font: 1.3rem Chivo Mono;
    border: none;
    transition: 0.15s;
    border-radius: 2rem;
}

#nav-btn:hover {
    cursor: pointer;
}

#nav-btn:focus {
    outline: 0;
}

#nav-btn-innactive {
    background-color: transparent;
    color: var(--primary-col);
    border: transparent;
    cursor: pointer;
}

#nav-btn-innactive:hover {
    background-color: var(--primary-col);
    /*border-bottom: 3px solid var(--primary-col);*/
    color: var(--background-col);
}

#nav-btn-active {
    background-color: var(--secondary-col);
    color: var(--background-col);
    cursor: default;
}