<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.first {
    display: flex;
    flex-direction: row;
    width: 80%;
    margin: auto;
}
.first &gt; div {
    flex: 1;
    text-align: center;
}
.first &gt; div &gt; div {
    margin: auto;
    margin-bottom: 1rem;
}
section {
    min-height: 100vh;
    margin-top: 2rem;
    margin-bottom: 5rem;
}
h1 {
    margin: auto;
    width: 80%;
    font-size: 42px;
    text-align: center;
    color: var(--primary-text);
}
h2 {
    margin-bottom: 1rem;
    color: var(--primary-text);
    opacity: .75;
}
.link {
    text-decoration: underline;
    font-weight: 500;
}
.faq-container {
    width: 80%;
    margin: auto;
    background: var(--mild-highlight);
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.5);
    color: var(--primary-text);
    cursor: pointer;
}
.faq-item {
    border-bottom: 1px solid var(--toolbar);
    padding: 10px 0;
    font-family: var(--primary-font);
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-question {
    width: 100%;
    font-family: var(--primary-font);
    text-align: left;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-text);
}
.faq-answer {
    display: none;
    padding: 10px;
    border-radius: 5px;
    margin-top: 5px;
    opacity: .75;
    text-align: left;
}
.arrow {
    transition: transform 0.3s ease-in-out;
}
.rotate {
    transform: rotate(180deg);
}</pre></body></html>