body {
    margin: 0;
    width: 100vw;
    height: 100vh;
    overflow-y: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    background-image: url('../img/background.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top -156px right -156px;
    padding: 2rem 1rem;
}

@media all and (max-width: 800px) {
    body {
        padding: 0;
    }

    .main-content {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    }

    .settings-icons {
        position: absolute;
        right: 0;
        top: 0;
        z-index: 1;
    }
}

.settings-icons {
    width: 100%;
    padding: 1rem 0;
    font-size: 1.5rem;
    text-align: right;
}

.settings-icons .icon {
    cursor: pointer;
}

.dark .settings-icons .icon {
    filter: contrast(0) brightness(100);
}

.main {
    max-width: 1000px;
    width: 100%;
}

.main-content {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr min-content 1fr;
    gap: 1rem;
}

.header {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: end;
    justify-content: space-between;
    padding: 2rem;
}

.logo {
    width: 75%;
    max-width: 400px;
    display: block;
    margin: 0 auto;
}

.app-name {
    margin-top: 2rem;
}

.dark .logo {
    filter: contrast(0) brightness(100);
}

.separator {
    background: var(--box-separator-color);
    width: 3px;
    height: 100%;
}

#themeSwitch {
}

@media all and (max-width: 800px) {
    .slogan, .separator {
        display: none;
    }

    .main-content {
        grid-template-columns: 1fr;
        margin: 0;
    }

    .header {
        padding-bottom: 0;
        text-align: center;
    }
}