:root {
    --c-primary: #09D8D1;
    --c-light: #E8F3F1;
    --c-gradient-start-color: #273740;
    --c-gradient-end-color: #1E2428;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

html {
    font-size: 1em;
    line-height: 1.5;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}

body {
    background: linear-gradient(125deg, var(--c-gradient-start-color), var(--c-gradient-end-color) 100%);
    color: var(--c-light);
    font-family: "neusa-next-std", sans-serif;
    font-size: 100%;
    font-weight: 300;
}

.gradientGlow {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 50%;
    max-height: 384px;
    background: linear-gradient( 0deg,rgba(9,216,209,.48) 0,rgba(9,216,209,.28) 12%,rgba(9,216,209,.14) 26.5%,rgba(9,216,209,.08) 45%,rgba(9,216,209,0));
}

.splash {
    height: 100%;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.splash__content {
    width: 100%;
    max-width: 540px;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
}

.splash__text {
    position: relative;
    font-size: 1rem;
    padding: 64px 0 80px 0;
    margin: 0;
    text-align: center;
}

.splash__text::after {
    position: absolute;
    left: 50%;
    bottom: 0px;
    width: 1px;
    height: 32px;
    background-color: var(--c-primary);
    content: '';
}

#LiquidMotion_logo {
    width: 56px;
    height: auto;
    display: block;
    margin-bottom: 24px;
}

#LiquidMotion_logoText {
    width: 240px;
    height: auto;
    fill: var(--c-light);
    display: block;
}

@media (min-width: 576px) {
    .splash__text {
        font-size: 1.125rem;
        padding-top: 80px;
        padding-bottom: 96px;
    }

    .splash__text::after {
        height: 40px;
    }

    #LiquidMotion_logo {
        width: 64px;
        margin-bottom: 32px;
    }

    #LiquidMotion_logoText {
        width: 272px;
    }
}

@media (min-width: 768px) {
    .splash__text {
        font-size: 1.25rem;
        padding-top: 96px;
        padding-bottom: 128px;
    }

    .splash__text::after {
        height: 48px;
    }

    #LiquidMotion_logo {
        width: 80px;
        margin-bottom: 40px;
    }

    #LiquidMotion_logoText {
        width: 336px;
    }
}