<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/css2?family=Press+Start+2P&amp;display=swap');

body {
    background: url('assets/bg.jpg') no-repeat center center fixed;
    background-size: cover;
    text-align: center;
    font-family: 'Press Start 2P', cursive;
    color: #fff;
}

.container {
    margin-top: 20%;
}

h1, p {
    font-size: 24px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    background: rgba(0, 0, 0, 0.6); /* Dark semi-transparent box */
    padding: 10px;
    display: inline-block;
    border-radius: 5px;
}

p {
    font-size: 14px;
}

.enter-button {
    background: url('assets/button.gif') no-repeat center;
    width: 200px;
    height: 80px;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

.enter-button:hover {
    filter: brightness(1.2);
}
</pre></body></html>