/* Resets default margins and sets a clean font */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}


h1 {
    margin-top: 0;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 0;
}