/* styles.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #2c3e50;
    color: #ecf0f1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.coming-soon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
}

.content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.countdown {
    font-size: 2rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
}
