/* Center everything on the screen with a dark, futuristic background */
body {
    margin: 0;
    height: 100vh;
    background-color: #000000;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    /* font-family: 'Courier New', Courier, monospace; */
    /* Monospace fonts work best */
    overflow: hidden;
}

h1 {
    color: #00ff66;
    /* Neon matrix green */
    /* font-size: clamp(3rem, 10vw, 8rem); */
    /* Responsive sizing */
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 0rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

/* Subtle glowing hover effect */
h1:hover {
    background-color: rgba(0, 255, 102, 0.1);
}