html {
    padding: 0 10%;
    scroll-behavior: smooth;
    height: 100%;
}

header {
    --dropdown-distance: 72px;
    margin-top: calc(var(--dropdown-distance) + 15px);
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

body {
    background-color: var(--background);
    color: var(--text);
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    text-rendering: optimizeLegibility;
    min-height: 80%;
}

bottom-footer {
    position: relative;
    bottom: 20px;
    left: 0%;
    right: 0%;
}

.background-image {
    z-index: -1;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: url("../img/background_light.png");
    background-position-x: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--navigator_main);
    filter: grayscale(1.0) brightness(0.8) opacity(0.05) blur(4px);
    transition: none;
}

.background-image.lightmode {
    background: url("../img/background_light.png");
    filter: grayscale(1.0) brightness(0.8) opacity(0.15) blur(4px);
    background-position-x: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hidden {
    display: none;
}

.no-select {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}