@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@700&display=swap");

body {
    margin: 0;
    overflow: hidden;
    font-family: 'Oswald', sans-serif;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url('background.png') no-repeat center center fixed;
    background-size: cover;
    background-position: center;
}

.container {
    text-align: center;
    z-index: 1;
}

.coming-soon-text {
    font-size: 7em;
    font-weight: 700;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 0.651); /* White glow for strong effect */
    animation: fadeIn 2s ease-in-out;
    padding: 10px 20px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

@media (max-width: 768px) {
    .coming-soon-text {
        font-size: 3em;
    }
}

@media (max-width: 480px) {
    .coming-soon-text {
        font-size: 2em;
    }
}

