body, html {
height: 100%;
margin: 0;
font-family: Monospace, sans-serif;
background-color: #1a1a1a; /* Very dark grey */
color: #f4f4f4; /* Light grey for text */
overflow: hidden;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
text-align: center;
}
h1 {
font-size: 3em;
margin: 0.2em 0;
color: #ffffff; /* White text for better contrast */
}
p {
font-size: 1.5em;
margin: 0.2em 0;
color: #cccccc; /* Slightly darker grey for paragraph text */
}
