.container {
  height: 400px; /* Altezza del box */
  overflow: hidden; /* Nasconde il testo in eccesso */
  position: relative;
}

.scrolling-text {
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0;
  line-height: 20px; /* Altezza linea */
  text-align: center;
  /* Animazione: nome, durata, tipo, ripetizione */
  animation: scroll-up 15s linear infinite;
}

/* Blocca l'animazione al passaggio del mouse */
.scrolling-text:hover {
  animation-play-state: paused;
  cursor: pointer; /* Opzionale: mostra che è interattivo */
}

@keyframes scroll-up {
  0% { transform: translateY(100%); }
  100% { transform: translateY(-100%); }
}
