/* styles.css */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #6b73ff 0%, #000dff 100%);
    color: #fff;
}

.container {
    text-align: center;
}

.coming-soon {
    font-size: 3rem;
    letter-spacing: 2px;
    animation: fadeIn 3s ease-in-out infinite alternate;
}

.description {
    font-size: 1.5rem;
    margin-top: 1rem;
    animation: slideIn 1.5s ease-in-out forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0.5;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
