body {
    background-color: #1a1a1a; /* Dark cozy theme */
    color: #f0f0f0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    padding: 20px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #ff9f43; /* Warm orange accent */
}

h2 {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.8;
}

/* Responsive adjustment for small screens */
@media (max-width: 600px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.1rem; }
}
