/* Barra superiore fissa */
.top-bar {
  width: 100%;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: background-color 0.3s ease;
  height: 60px;

}

.top-bar-text{
  padding-left: 10px;
  background: linear-gradient(to right, #bd1ad5, blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Rock Salt', cursive;
  font-weight: lighter;
  text-align: center;
}

.top-bar.scrolled {
  background-color: #000000;
}
