<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/* CSS Document */
h2 {
    width: 100%;
    height: fit-content;
    text-align: center;
}

article {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
    max-width: 960px;
    margin: 0 auto;
}

section {
    background: #fff;
    width: 100%;
    max-width: 100% !important;
    overflow: hidden;
    margin-top: 50px;
}

header {
    background: #01c200;
}

a {
    text-decoration: underline;
    margin-top: 3px;
}

.terms {
    margin-bottom: 3%;
    display: flex;
    justify-content: center;
}

@media all and (max-width: 440px) {

    header h2 .terms {
        width: 100%;
    }

    h2 {
        font-size: 18px;
        margin-top: 10px;
    }
}</pre></body></html>