body {
    background-color: #000;         /* black background */
    color: #fff;                    /* white text */
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;             /* center all text */
}

main {
    max-width: 800px;
    padding: 20px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

blockquote {
    font-style: italic;
    font-size: 1.5rem;
    margin: 20px 0;
    color: #ccc;
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
}
