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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #504f4e;
    font-family: "Helvetica", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
    padding: 2rem;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a:hover {
    text-decoration: underline;
}

a.link {
    color: #e31e31;
}

article p {
    margin-bottom: 0.688rem;
}

h1 {
    font-size: 1.875rem;
    line-height: 1.1;
    margin: 1.375rem 0;
    color: #e31e31;
    font-weight: normal;
}

h2 {
    font-size: 1.25rem;
    line-height: 1.1;
    font-weight: normal;
    margin: 0.688rem 0;
    color: #e31e31;
}

hr {
    border-style: none;
    border-top: 1px solid #eee;
    margin: 1.375rem 0;
}

ul {
    list-style: none;
    margin-bottom: 1.563rem;
}

ul li {
    padding: 0 0 0 1rem;
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1rem;
    font-size: 1.5rem;
    color: #e31e31;
    line-height: .9;
}

header a {
    position: absolute;
    top: 2rem;
    right: 3rem;
}

.flex {
    display: flex;
    justify-content: space-between;
}

.flex&gt;div:last-of-type {
    display: flex;
    align-items: start;
    gap: 2rem;
}

.button a {
    padding: 6px 12px;
    background-color: #fff;
    color: #e31e31;
    transition: all ease-in-out .2s;
    border-radius: 20px;
    border: 1px solid #e31e31;
    display: inline-block;

}

.button a:hover {
    color: #fff;
    background-color: #c9192a;
    border-color: #ae1624;
    text-decoration: none;
}

footer p {
    font-size: 0.75rem;
}

@media only screen and (max-width: 49.938rem) {

    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

@media only screen and (max-width: 35rem) {
    #wrapper {
        padding: 1rem;
    }

    h1 {
        font-size: 1.75rem;
        text-align: center;
    }

    h2 {
        font-size: 1.1rem;
    }

    ul {
        margin-bottom: 1rem;
    }

    header {
        display: flex;
        justify-content: center;
        padding: 0 0 1rem;
    }

    header a {
        position: static;
    }

    .flex {
        flex-direction: column-reverse;
        align-items: center;
        gap: 1rem;
        padding-bottom: 1.5rem;
    }

    footer {
        text-align: center;
    }
}

@media only screen and (max-width: 23.438rem) {}</pre></body></html>