<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*@font-face {
    font-family: 'nug-soth';
    src: url(../res/font/nugsoth.ttf);
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'masonic';
    src: url(../res/font/masonic.ttf);
    font-weight: normal;
    font-style: normal;
}*/

@font-face {
    font-family: 'immortal';
    src: url(../res/font/immortal.ttf);
    font-weight: normal;
    font-style: normal;
}

button {
    border: none;
    margin: 0;
    padding: 0;
    width: auto;
    overflow: visible;

    background: transparent;

    /* inherit font &amp; color from ancestor */
    color: inherit;
    font: inherit;

    /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
    line-height: normal;

    /* Corrects font smoothing for webkit */
    -webkit-font-smoothing: inherit;
    -moz-osx-font-smoothing: inherit;

    /* Corrects inability to style clickable `input` types in iOS */
    -webkit-appearance: none;
}

/* Remove excess padding and border in Firefox 4+ */
&amp;::-moz-focus-inner {
    border: 0;
    padding: 0;
}

* {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: immortal, Arial;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*:before, *:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

input, textarea {
    -webkit-touch-callout: text !important;
    -webkit-user-select: text !important;
    -khtml-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
    -webkit-appearance: none;
    border-radius: 0px;
}

*:focus {
    outline: none;
}

html, body {
    font-family: immortal;
    color: #000;
    background: #000;
    overflow: auto;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    overflow: auto;
}

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

a:link, a:visited {
    background-color: #000;
    border: none;
    color: #FFFFFF;
    padding: 0px;
    text-align: inherit;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
}

a:hover, a:active {
   background-color: #000;
}

.title {
    width: 100%;
    font-size: 7vw;
    height: 10vh;
    text-align: center;
    display: none;
}

.invocation {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    min-height: 100%;
    /* text-align: center; */
    font-size: calc(1.3vw + 1.5vh);
    line-height: calc(2.5vw + 2.5vh);
    padding: 2em;
}


.invocation p {
    margin: 0;
    width: 100%;
}


@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }

    70% {
        transform: scale(1.5);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}</pre></body></html>