@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&display=swap');

body {
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #0f0;
    font-family: 'Roboto Mono', monospace;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    padding: 40px;
    border: 1px solid #0f0;
    box-shadow: 0 0 20px #0f0;
    max-width: 800px;
    text-align: left;
}

@media not screen and (pointer: coarse) {
	.container {
		background-color: rgba(0, 0, 0, 0.95);
	}
}
@media screen and (pointer: coarse) {
	.container {
		background-color: rgba(0, 0, 0, 0.65);
	}
}

pre {
    margin: 0;
    white-space: pre;
    color: #0f0;
    text-shadow: 0 0 5px #0f0;
}

.info {
    margin-top: 30px;
    line-height: 1.6;
}

.info span {
    color: #0f8;
}

a.button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    border: 1px solid #0f0;
    color: #0f0;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    text-shadow: 0 0 5px #0f0;
    box-shadow: 0 0 10px #0f0;
}

a.button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #0f0;
    transform: scaleX(0);
    transform-origin: bottom left;
    transition: transform 0.4s ease;
}

a.button:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

h1 {
    text-align: center;
    text-shadow: 0 0 10px #0f0;
}