/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #f0f2f5; /* Light background */
    color: #333; /* Dark text */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Full viewport height */
    text-align: center;
}

.container {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 90%;
}

h1 {
    font-size: 3em;
    color: #007bff; /* Primary color */
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 30px;
}


.stay-tuned {
    font-size: 1.1em;
    color: #6c757d;
    margin-bottom: 20px;
}



/* Optional: Add a simple background image for flair */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    opacity: 0.5;
    z-index: -1;
}