body {
    --color-text: #333;
    --color-bg: #101010;
    --color-link: #6100d9;
    --color-link-hover: #333;
    --color-info: #333;
    --color-title: #333;
    --color-subtitle: #6100d9;
    --color-subtitle-bg: #6100d9;
    background: #fcfcfc;
}

a {
    font-weight: 700;
}

.bcg-primary {
    background-color: #6100d9;
}

.text-primary {
    color: #6100d9 !important;
}

#logo {
    position: absolute;
    top: 30px;
    left: 30px;
    color: #333;
    font-size: 1.3em;
    font-weight: 400;
    z-index: 2;
}

#logo b {
    font-weight: 900;
}

#logo span {
    color: var(--color-subtitle);
}

#menu {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 1.2em;
    font-weight: 400;
    z-index: 2;
}

.content__title {
    font-size: 5vw;
    line-height: 0.85;
    letter-spacing: -0.025em;
    font-weight: 400;
    color: var(--color-title);
    text-align: center;
    margin: 0;
    pointer-events: none;
}

.content__title b {
    font-weight: 900;
}

.content__title span {
    color: var(--color-subtitle);
}

.content__subtitle {
    font-size: 1.15em;
    color: var(--color-subtitle);
    padding: 0 0.75em;
    margin: 1em 0;
    letter-spacing: 0.25em;
    /*text-indent: 1.5em;*/
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
}

footer {
    width: 100%;
    position: absolute;
    bottom: 0;
    padding: 30px;
    z-index: 1;
    font-size: 20px;
}

footer .logo {
    position: absolute;
    right: 30px;
    bottom: 30px;
}

@media screen and (max-width: 55em) {
    .content__title {
        font-size: 2.5em;
    }
    .content__subtitle {
        font-size: 0.6em;
    }
    body {
        background-position: 50% 20em;
    }
    #logo,
    #menu {
        font-size: 1.5em;
    }
}