body, html {
    height: 100%;
    margin: 0;
    font-family: 'Courier New', Courier, monospace; /* Font monospaziato */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    padding-top: 50px;
}

.container {
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 50px;
}

h1 {
    font-family: 'Courier New', Courier, monospace; /* Font monospaziato */
    font-size: 8vw;
    margin: 0;
}

#mystery-box {
    margin-top: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px;
    border-radius: 10px;
    min-width: 80%;
    text-align: center;
    position: relative;
    height: 3em; /* Altezza sufficiente per contenere il testo */
    overflow: hidden; /* Nasconde il testo che scorre fuori */
}

#mystery-text {
    font-size: 2vw;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8); /* Bianco semi-trasparente */
    white-space: nowrap;
    position: absolute;
    left: 50%; /* Centra orizzontalmente */
    transform: translateX(-50%); /* Compensa il centro orizzontale */
    display: inline-block;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.8); /* Effetto luminoso verde fluo */
    transition: top 0.1s linear; /* Transizione per scorrimento fluido */
}
@media (max-width: 600px) {
    #mystery-text {
        font-size: 10vw; /* Dimensione del font maggiore per schermi piccoli */
    }
}
@media (max-width: 1200px) {
    #mystery-text {
        font-size: 10vw; /* Dimensione del font maggiore per schermi piccoli */
    }
}