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

#canvas, #particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#particleCanvas {
    z-index: 1;
}

#canvas {
    z-index: 2;
}

#instructions {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    color: #fff;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
    z-index: 3;
    padding: 0 10px;
    box-sizing: border-box;
}

#instructions p {
    margin: 5px 0;
}

#title {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    text-align: center;
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 4;
    text-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff, 0 0 30px #ffffff;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff, 0 0 30px #ffffff;
    }
    to {
        text-shadow: 0 0 20px #ffffff, 0 0 30px #ffffff, 0 0 40px #ffffff;
    }
}

@media screen and (max-width: 1024px) {
    #title {
        font-size: 5vw;
    }
}