h1 {
    font-family: 'Courier New', monospace;
    color: #ffffff;
    font-size: 3.5rem;
    text-align: center;
    margin: 20px 0;
}

body {
    margin: 20px;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

button {
    font-family: 'Courier New', sans-serif;
    background-color: rgb(255, 255, 255);
    font-size: 1.2rem;
    text-align: center;
    padding: 10px 15px;
    margin: 5px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: rgb(9, 174, 0);
    color: rgb(255, 255, 255);
}

p {
    font-family: 'Courier New', Courier, monospace;
    color: #ffffff;
    margin: 20px 0;
    font-size: 1.1rem;
    text-align: center;
    line-height: 1.5;
}

a {
    font-size: 1.1rem;
    color: #ffffff;
    text-decoration: none;
}

/* Add responsive design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    button {
        font-size: 1rem;
    }
    
    p {
        font-size: 1rem;
    }
}


