<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
        margin: 0;
}

#main-logo {
        position: absolute;
        top: 20px;
        left: 40px;
        width: 80px;
}

html body #main-page {
        height: 100%;
}

#main-page {
        max-height: 900px;
}

#main-page {
        max-height: 900px;
        display: flex;
        justify-content: center;
        flex-direction: column;
}

#title {
        flex: 1;
        margin-top: 80px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-weight: bold;
}

#title p {
        font-size: 130px;
        line-height: 130px;
}

#access-button {
        display: flex;
        justify-content: center;
        margin-top: 100px;
        margin-bottom: 20px;
}

#access-button button {
        background: #FFDE03;
        font-size: 20px;
        padding: 20px;
        font-weight: bold;
        align-self: center;
        width: 250px;
}
#access-button button:hover {
        background: #dbbf04;
}



#caret {
        width: 32px;
        height: 32px;
        align-self: center;
        margin-bottom: 20px;
}

#explanation {
        display: flex;
        flex-direction: column;
        align-items: center;
}

#line {
        height: 4px;
        width: 50px;
        border-radius:2px;
        background: black;
}

#explanation-body {
        max-width: 400px;
}


#tag-line {
        padding-top: 20px;
        font-weight: bold;
        font-size: 24px;
        text-align: center;
}

#explanation p {
        font-size: 14px;
        opacity: 0.9;
        line-height: 22px;
        padding-top: 20px;
}

#features {
        margin-top: 80px;
        display: flex;
        align-items: center;
}

.feature {
        flex: 1;
        height: 300px;
        border-right: 1px solid;
        min-width: 420px;
}
.feature-body {
        margin: 10 20 40 20;
        min-height: 120px;
}

h3 {
        font-size: 30px;
        font-weight: bold;
        text-align: center;
}

.feature p {
        text-align: center;
        opacity: 0.9;
}

.feature-images {
        display: flex;
        justify-content: space-evenly;
        align-content: center;
        margin: 0 32 0 32;
}


img.supported-datasources {
        width: 80px;
}

#export {
        width: 100px;
}

#mobile-first {
        margin-top: -36px;
        width: 130px
}

@media only screen and (max-width: 700px) {
        #title p {
                font-size: 70px;
                line-height: 70px;
        }

        #main-logo {
                position: absolute;
                top: 20px;
                left: 40px;
                width: 60px;
        }
        #access-button {
                display: flex;
                justify-content: center;
                margin-top: 64px;
                padding: 0 20px;
                margin-bottom: 20px;
        }
        #explanation {
                padding: 20px;
        }
        #features  {
            flex-direction: column;
        }
        .feature {
                flex: 1;
                height: 300px;
                border-right: none;
                border-bottom: 1px solid;
                min-width: 300px;
                padding: 40px;
        }
        .feature-body {
                margin: 0 20 0 20;
                padding-bottom: 20px;
        }

        .feature-body h3 {
                white-space: nowrap;
        }

        img.supported-datasources {
                width: 60px;
        }
        img#export {
                width: 60px;
        }

        img#mobile-first {
                margin-top: -30px;
                width: 120px
        }
}
</pre></body></html>