body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #1c1c1c;
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    overflow: hidden;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.fire-container {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 200px;
    z-index: 2;
    pointer-events: none;
}

#fireCanvas {
    width: 100%;
    height: 100%;
}

.coming-soon-container {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 1;
    position: relative;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.animation {
    display: flex;
    justify-content: center;
}

.dot {
    width: 1rem;
    height: 1rem;
    background-color: #ffffff;
    border-radius: 50%;
    margin: 0 0.2rem;
    animation: blink 1.4s infinite both;
}

.dot:nth-child(1) {
    animation-delay: 0s;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes blink {
    0%, 80%, 100% {
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
}

.message {
    opacity: 0;
    transition: opacity 1s;
}

.message.show {
    opacity: 1;
}
