html, body {
  overflow-x: hidden;
}

.text-banner {
  width: 100%;
  overflow: hidden; /* Skjuler scrollbarer */
  background: #C3DDF2;
  padding: 16px 0;
}

/* Selve båndet */
.track {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  animation: scroll 25s linear infinite; /* Juster hastigheden her */
}

/* Hver halvdel af indholdet */
.content {
  display: flex; /* Flex container for at arrangere h2 elementer i række */
}

/* H2 styling */
.content h2 {
  margin: 0;
  padding: 0 70px;
  white-space: nowrap;
  letter-spacing: 2px;  
  font-family: 'playfair display', serif;
  font-size: 20px;
  color: #1a1a1a;
}

/* Scroll animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}






  
  