:root {
    --primary-color: #46639C;
    --secondary-color: #F5F5F5;
    --tertiary-color: #717478;
    --box-f-size: 1.7vw;
    --copy-f-size: 0.9vw;
}

html, body, .main-container {
    width: 100%;
    height: 100%;
}

body {
    font-family: "Lato", Arial, Helvetica, sans-serif;
    margin: 0;
    color: var(--tertiary-color);
}

.mobile-only {
    display: none;
}

.bold {
    font-weight: 600;
}

.fixed-bar {
    position: fixed;
    background-color: var(--primary-color);
    box-sizing: border-box;
    color: white;
    padding: 1.1vw 1.6vw;
    font-size: 1.3vw;
    font-weight: 700;
    width: 100%;
}

.fixed-copy {
    position: fixed;
    text-align: center;
    font-size: var(--copy-f-size);
    font-weight: 300;
    width: 100%;
    bottom: 3.1vw;
}

.main-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.6vw;
}

.main-container__box {
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: var(--box-f-size);
    box-sizing: border-box;
    background-color: var(--secondary-color);
    line-height: 1.6;
    text-align: center;
    padding: 3.6vw 0;
    width: 100%;
}

.main-container__logo {
    width: 23vw;
}

@media all and (max-width: 1024px) {
    :root {
        --box-f-size: 4.1vw;
        --copy-f-size: 2.6vw;
    }

    .bold {
        font-size: 700;
    }

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .main-container {
        gap: 3.8vw;
    }

    .main-container__box {
        font-family: inherit;
        padding: 10.3vw 8.2vw;
    }

    .main-container__logo {
        width: 100%;
    }

    .fixed-copy {
        position: relative;
        bottom: auto;
        margin-top: 10.26vw;
    }
}