<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css?family=Montserrat:300');
html,
body {
    height: 100%;
    width: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    background-image: url("/splash.png");
    background-color: #220052;
}

* {
    margin: 0;
    padding: 0;
}

section {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgb(245, 148, 2);
    align-items: center;
    max-width: 536px;
    margin: auto;
    position: relative;
}

a {
    color: inherit;
    text-decoration: underline;
}

p {
    margin: 0.83rem 0;
}

@keyframes slideUp {
    0% {
        transform: translateY(40px);
        opacity: 0;
    }
    50% {
        opacity: 0.2%;
    }
    100% {
        opacity: 1;
        transform: none;
    }
}</pre></body></html>