body {
    background-color: #2c3e50; /* Dark blue background */
    color: #ecf0f1; /* Light gray text for contrast */
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

h1 {
    color: #e74c3c; /* Bright red for emphasis */
    font-size: 2.5em;
}

p {
    font-size: 1.2em;
}

/* If you're using a mobile-first approach, consider adding responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }
    p {
        font-size: 1em;
    }
}
