:root {
    --foreground-color: black;
    --background-color: white;
    --background-color-alt: rgb(192, 192, 192);
    --selected-line: #103F8E;
}

html {
    font-family: 'Segoe UI Variable Display', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    color: var(--foreground-color);
    background-color: var(--background-color);
}

a {
    text-decoration: none;
    color: var(--selected-line);
}

.nav_view ul {
    display: flex;
    margin: 10px 16px 16px -16px;
    justify-content: center;
    list-style-type: none;
}

.nav_view a {
    text-decoration: none;
    padding: 10px;
    color: var(--foreground-color);
    margin: 0px 10px;
}

.nav_view a.active {
    border-bottom: 2px solid var(--selected-line);
    color: var(--selected-line);
}

.header_container {
    display: flex;
    justify-content: center;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    padding: 20px;
}

.header_app_info {
    text-align: center;
}

.header_logo {
    width: 96px;
    height: 96px;
    margin: -30px;
}

.header_image_container {
    width: 70%;
}

.header_image {
    width: 100%;
}

.made_with_love_link_container {
    text-align: center;
    margin: 20px;
}

@media (max-width: 1280px) {
    .header_container {
        flex-direction: column-reverse;
    }

    .header_image_container {
        width: 100%;
    }

    .header_logo {
        margin: 0px;
    }

}

@media screen and (prefers-color-scheme: dark) {
    :root {
        --foreground-color: white;
        --background-color: #1d1d1d;
        --background-color-alt: rgb(44, 44, 44);
        --selected-line: #2E7AD5;
    }
}