

@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap'); 

body 
{
    font-family: "Press Start 2P"; 
    background-color: #F9F9FA; 
    color: black; 
    min-height: 100vh; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
}

.container 
{
    width: 100%; 
    padding: 0 15px; 
    max-width: 1200px; 
    margin: 0 auto; 

}

h1, p 
{
    text-align: center; 
    margin-bottom: 1rem; 
}

button 
{
    cursor: pointer; 
    border: none; 
    padding: 0.8em 1.5em; 
    border-radius: 0px; 
    font-family: var(--font-pixel, monospace); 
    font-size: 1rem; 
    color: white; 
}