<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --bg-color: rgb(22, 19, 32);
    --main-color: rgb(54, 73, 78);
}



body {
    background-color: var(--bg-color);
    display: grid;
    grid-template-columns: 1fr min(1280px , 90vw) 1fr;
    color: white;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
main {
    background-color: var(--main-color);
    padding: 1em;
    grid-column: 2;
    margin-bottom: 6em;
}

.tagline {
    font-weight: bold;
}

h1 {
    font-size: 500%;
    text-align: center;
    text-decoration: 2px underline;
    text-shadow: 5px 5px 2px black;
}

.titleimg {
    object-fit: cover;
    height: min(300px,40vw);
    text-align: center;
}

.important {
    color: rgb(255, 82, 111);
    font-weight: bolder;
}


.titleimgcontainer {
    margin-top: 4em;
    margin-bottom: 1em;
    display: flex;
    justify-content: center;
}

.downloadbutton {
    padding: 0.5rem;
    color: white;
    text-decoration: none;
    background-color: rgb(83, 83, 255);
    border-bottom: 3px solid blue;
    border-radius: 0.5em;
    margin-block: 1em;
    line-height: 3em;
}

.downloadbutton:hover {
    border-bottom: 0px solid blue;
    background-color: rgb(75, 204, 255);
    color: black;
    
}
.download {
    background-color: rgb(255, 255, 255);
    border: 2px solid gray;
    width: max-content;
    padding: 1em;
    border-radius: 1em;
    color: black;
    margin-block: 2em;
}

.game {
    width: 100%;
    height: 100%;
}

#FSbutton {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 5px;
    background-color: rgba(128, 128, 128, 0.384);
}
#FSbutton:hover {
    background-color: rgba(236, 236, 236, 0.384);
}

.gamecontainer {
    aspect-ratio: 16/9;
    position: relative;
    
}

@media only screen and (max-width: 640px) {
    .download {
        
        width: auto;
        
    }
    
    
}

.fullScreen {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}</pre></body></html>