header {
    color: var(--color-brand-blue);
    font-family: "Sequel100Black-65";
    font-size: 16px;
    text-align: center;
    padding: 1rem 0;
}

body > header {
    box-shadow: inset 0 -1px 0 0 #ededed;
}

main {
    display: flex;
    height: 100%;
}

aside {
    flex: 5;
    display: flex;
    flex-direction: column;
    padding: 2em;
}

    aside header {
        text-align: left;
    }

    aside section {
        width: 40%;
        height: 70%;
        min-width: 400px;
        min-height: 300px;
        margin: 3em auto;
    }

section .title, section .content {
    margin-top: 4rem;
}

section .title {
    display: flex;
    flex-direction: column;
    border-left: 0.75rem solid black;
    padding-left: 0.75rem;
    font-size: 2.8rem;
    font-family: 'Sequel100Black-75';
}

    section .title label {
        display: flex;
        height: 2.8rem;
        flex-direction: column;
        justify-content: center;
    }

        section .title label span {
            line-height: 0.5em;
        }

.title > label:first-child {
    justify-content: start;
}

.title > label:last-child {
    margin-top: 0.2em;
}

section .content {
    font-family: 'Montserrat';
    color: var(--color-gray);
    font-size: 1.2rem;
    line-height: 1.5;

}

article {
    flex: 8;
    display: flex;
    background-image: url(../images/background.png);
    background-size: 100% 100%;
}

    article section {
        margin: auto auto auto 0;
        width: 45%;
        min-width: 500px;
        height: auto;
        background-color: #ffffff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 2em;
    }

.language-switcher {
    display: flex;
}

    .language-switcher .switch-button {
        width: 3rem;
        height: 3em;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        border: none;
        cursor: pointer;
        font-weight: bolder;
        background-color: #edf0ff;
        transition: background-color .1s ease-in-out;
        text-transform: capitalize;
        font-family: 'Montserrat';
    }

        .language-switcher .switch-button:hover {
            background-color: #cbd4ff;
        }

.language-list {
    display: flex;
    flex-direction: column;
    border-radius: 4px;
    padding: 0.5rem 0;
    background-color: #edf0ff;
    position: absolute;
    margin-top: 0.5rem;
    visibility: visible;
    width: 14rem;
}

    .language-list.hidden {
        visibility: hidden;
    }

    .language-list .list-item {
        font-family: 'Montserrat';
        padding: 0.3em 1em;
        display: flex;
        align-items: center;
        cursor: pointer;
    }

        .language-list .list-item:hover {
            background: #cbd4ff;
        }

        .language-list .list-item .language-icon {
            width: 1.5rem;
            height: 1.5rem;
            margin-right: 1em;
        }

        .language-list .list-item .selected-icon {
            width: 1.5rem;
            height: 1.5rem;
            margin-left: auto;
            color: var(--color-brand-blue);
        }
