/* Reset default margins and set a full-viewport height */
body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f4f9;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #333;
}

/* Style the central container */
.welcome-container {
    background: #ffffff;
    padding: 3rem 4rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Style the text elements */
h1 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #2c3e50;
}

p {
    margin: 0;
    color: #555;
    font-size: 1.1rem;
}