body {
    background-color: var(--primary);
}

* {
    margin: 0;
    padding: 0;
}

:root[theme=light] {
    --primary: #F1F0E8;
    --shadow: 0, 0, 0;
    --font-color: #3A3A38;
    --gradient: #F1F0E8, #e2e1d8;
}

:root[theme=dark] {
    --primary: #3A3A38;
    --shadow: 0, 0, 0;
    --font-color: #F1F0E8;
    --gradient: #3A3A38, #353533;

}

.nav {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-family: "Funnel Sans";

    width: 220px;
    display: flex;
    justify-content: center;
}

.nav a {
    position: relative;
    color: var(--font-color);
    text-decoration: none;

    display: inline-block;
    margin: 10px;

    transition: ease all 200ms;
}

.nav a:hover {
    scale: 1.1;
}

.nav a.active {
    scale: 1.2;
    font-weight: 500;
}

.button-primary {
    text-decoration: none;
    text-wrap: nowrap;
    display: block;

    padding: 5px 10px;
    background-color: var(--primary);
    color: var(--font-color);
    width: fit-content;
    height: 20px;
    box-shadow: inset 0px 0px 10px 0px rgba(var(--shadow), 0.3), 0px 0px 20px 0px rgba(var(--shadow), 0.1);
    border-radius: 10px;

    transition: ease all 200ms;
}

.button-primary:hover {
    box-shadow: inset 0px 0px 5px 2px rgba(var(--shadow), 0.4), 0px 0px 20px 0px rgba(var(--shadow), 0.15);
}

.button-primary:active {
    color: rgb(28, 28, 28);
}

.themeSwitcher {
    position: absolute;
    z-index: 999;
    height: 32px;
    top: 10px;
    right: 15px;

    font-size: 32px;

    cursor: pointer;
}

.themeIcons {
    position: relative;
    width: 32px;
    height: 32px;
}

.themeSwitcher i {
    position: absolute;
    opacity: 0;
    color: var(--font-color);
    transition: ease all 200ms;
}

.activeTheme {
    opacity: 1 !important;
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--font-color) var(--primary);
}