css
/* Main layout styles */
body {
    background-color: #952929; /* Dark gray background */
    color: #ffffff;           /* White text color */
    font-family: sans-serif;  /* Modern font without serifs */
    display: flex;
    flex-direction: column;
    align-items: center;      /* Center content horizontally */
    justify-content: center;  /* Center content vertically */
    height: 100vh;            /* Full viewport height */
    margin: 0;                /* Remove default browser margins */
}

/* Header styles */
h1 {
    color: #00d1ff;           /* Light blue accent color */
}