/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Background */
body {
    font-family: 'Alef', sans-serif;
    background: #1e1e1e;
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Container */
.content {
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 100%;
}

/* Heading */
.coming-soon {
    font-size: 5rem;
    font-weight: 600;
    letter-spacing: 5px;
    margin-bottom: 20px;
    color: #f39c12;
    text-transform: uppercase;
    animation: slideIn 1s ease-out;
}

/* Subtext */
.subtext {
    font-size: 1.2rem;
    color: #ccc;
    opacity: 0;
    animation: fadeIn 2s ease-out 1s forwards;
}

/* Animation for coming soon text */
@keyframes slideIn {
    0% {
        transform: translateY(-30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Animation for subtext */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .coming-soon {
        font-size: 4rem;
    }
    .subtext {
        font-size: 1rem;
    }
}
