body {
    background-color: #050505;
    color: #fff;
    font-family: sans-serif;
    height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    /* Small stars pattern */
    background-image: 
        radial-gradient(white 1px, transparent 1px),
        radial-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px);
    background-size: 50px 50px, 100px 100px;
    background-position: 0 0, 25px 25px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

p {
    color: #888;
}