body {
    margin: 0;
    overflow: hidden;
    background-color: #000;
}

canvas {
    display: block;
}

#text-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-family: 'Bruno Ace SC', cursive;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 400px;
}
@media (min-width: 768px) {
    .logo {
        width: 100%;
    }
  }

.soon {
    color: white;
    text-shadow: 0 0 10px white;
}

.copyright {
    color: transparent;
}


.fade-in {
    opacity: 0;
    /* Start with 0 opacity */
    animation: fade-in 1s ease-in-out forwards;
    /* Apply the animation */
}

@keyframes fade-in {
    from {
        opacity: 0;
        /* Start with 0 opacity */
    }

    to {
        opacity: 1;
        /* Fade to 1 opacity */
    }
}

/* Legacy CSS */
.title {
    color: yellow;
    text-shadow: 0 0 10px white;
    font-size: 10vw;
    font-weight: bold;
    margin-bottom: 0;
}

.subtitle {
    color: white;
    font-size: 2vw;
    margin: 0;
}