    @font-face {
      font-display: swap;
      font-family: 'Ubuntu Mono';
      font-style: normal;
      font-weight: 700;
      src: url('../fonts/ubuntu-mono-v18-latin-700.woff2') format('woff2');
    }

    body {
      background-color: black;
      background-image: url('../assets/img/sterren_c.webp'); 
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      margin: 0;
      height: 100vh;
      overflow: hidden;
      font-family: "Ubuntu Mono", sans-serif;
    }

    .image-container {
      position: absolute;
      top: -5%;
      right: -15%;
      bottom: 2%;
      width: 66.67%;
      /*height: 140%;*/
      z-index: 2;
    }

    .image-container img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
      user-select: none;
    }

    .tickertape {
      position: absolute;
      top: 40%;
      left: 0;
      width: 100%;
      height: 8.2vw;
     /*  background-color: #001f3f;  donkerblauw */
      background-color: rgb(0 25 65); 
      color: rgb(255 215 10 / 1);
      overflow: hidden;
      white-space: nowrap;
      z-index: 1;
      display: flex;
      align-items: center;
    /*  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); */
      padding-bottom: 0.1vw;
    }
/* arie */

    .tickertape .text {
      display: inline-block;
      white-space: nowrap;
      will-change: transform;
      animation: scroll 750s linear infinite;
      font-size: 6.5vw;
      font-weight: bold;
      user-select: none;
      text-shadow: 1px 0px 1px #877103;
    }

    @keyframes scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }


/* ---------- Tweede balk basis ---------- */
.second-bar {
  position: absolute;
  top: calc(40% + 8.2vw);
  left: 0;
  width: 100%;
  background-color: #bbb;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  z-index: 1;

  /* start verborgen */
  height: 0;
  opacity: 0;
  transition: height 0.4s ease, opacity 0.4s ease;
}

/* zichtbaar-toestand */
.second-bar.visible {
  height: 3vw;
  opacity: 1;
}

/* inhoud blijft ongewijzigd */
.second-bar-content {
  width: 65%;
  display: flex;
  justify-content: center;
  gap: 3vw;
  font-size: 1.5vw;
  color: #001f3f;
}

.second-bar-content a { color: inherit; text-decoration: none; font-weight: bold; }
.second-bar-content a:hover { text-decoration: underline; }

/* ---------- Altijd zichtbaar op ≤ 1024 px ---------- */
@media (max-width: 1024px) {
  .second-bar       { height: auto; opacity: 1; padding: 1vw 0; }
  .second-bar.visible { /* class heeft hier geen effect */ }
  .second-bar-content { gap: 5vw; font-size: 3vw; flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .second-bar-content { 
    flex-direction: column; 
    font-size: 4vw; 
    padding-left: 1vw; 
    gap: 1vw;
  }
}