#header-container {
    display: flex;
    width: 100%;
    flex-direction: row;
    margin: 0 auto 2% auto;
}

#filler {
    flex: 1;
}

#header-title {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: "x-files";
    font-size: 12rem;
}

#header-logo-container {
    flex: 1;
    display: flex;
    flex-direction: row-reverse;
}

#header-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #0070c0;
    margin: 0 20px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
}

#header-logo > img {
    width: 75px;
    margin-left: 10px;
}

#header-logo:hover {
    cursor: pointer;
}

@media (min-width: 769px) and (max-width: 1024px) {
    #header-title {
        font-size: 10rem;
    }

    #header-logo {
        width: 80px;
        height: 80px;
        border: 3px solid var(--logo-border);
        background-color: white;
        margin-right: 15px;
    }

    #header-logo > img {
        width: 60px;
        margin-left: 8px;
    }
}

@media (max-width: 768px) {
    #header-title {
        font-size: 6rem;
    }

    #header-logo {
        width: 70px;
        height: 70px;
        border: 3px solid var(--logo-border);
        background-color: white;
    }

    #header-logo > img {
        width: 52px;
        margin-left: 7px;
    }

    @media (max-width: 400px) {
        #header-title {
            font-size: 5rem;
        }

        #header-logo {
            width: 50px;
            height: 50px;
            border: 2px solid var(--logo-border);
            background-color: white;
            margin-right: 5px;
        }

        #header-logo > img {
            width: 40px;
            margin-left: 5px;
        }
    }
}
