<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body, html {
    margin: 0;
    padding: 0;
    overflow: hidden; /* This prevents scrollbars on the body and html elements */
}

.site-content {
    width: 100vw; /* Use 100vw to ensure the container is full width */
    height: 100vh; /* Use 100vh to ensure the container is full height */
    overflow: hidden; /* This prevents scrollbars on the container */
}

.site-inner {
    max-width: unset !important;
    padding: 0;
}

iframe {
    width: 100%; /* Use 100% to make the iframe responsive to its container */
    height: 100%; /* Use 100% to make the iframe responsive to its container */
    border: 0; /* Remove iframe border */
}</pre></body></html>