@font-face {
  font-family: ABC Oracle Triple;
  src: url(../fonts/ABCOracleTripleVariable-Trial.ttf);
}

@font-face {
  font-family: Apple Garamond;
  src: url(../fonts/AppleGaramond.ttf);
}

@font-face {
  font-family: Arial Narrow;
  src: url(../fonts/Arial\ Narrow.ttf);
}

@font-face {
  font-family: Helvetica Neue;
  src: url(../fonts/HelveticaNeueRoman.otf);
}

@font-face {
  font-family: Times New Roman;
  src: url(../fonts/Times\ New\ Roman.ttf);
}

@font-face {
  font-family: Glasset;
  src: url(../fonts/Glasset\ Demo.ttf);
}

@font-face {
  font-family: Steps Mono Thin;
  src: url(../fonts/Steps-Mono-Thin.otf);
}

@font-face {
  font-family: Elvenes Bold;
  src: url(../fonts/Elvenes-BoldDisplay.ttf);
}

@font-face {
  font-family: FifteenTwenty Bold;
  src: url(../fonts/FifteenTwenty-Bold.otf);
}

@font-face {
  font-family: Kode Mono;
  src: url(../fonts/KodeMono-VariableFont_wght.ttf);
}

:root {
      --lh: 0.9;
      --font-size: 25px;
      --lh-font-size: 1;
    }

    body:not(.offline-page) {
      margin: 0;
      background: black;
      overflow-anchor: none;
    }

    .wrap {
      position: relative;
      cursor: crosshair;
      user-select: none;
      --mx: 50%;
      width: 90%;
      max-width: 90vw;
      margin: 0 auto;
      padding-top: 40vh;
      padding-bottom: 300vh;
    }

  #online h1 {
      font-family: bdr-mono, sans-serif;
      font-weight: 400;
      font-size: 300px;
      letter-spacing: -25px;
      word-spacing: -20px;
      line-height: 0.01;
      text-align: center;
      color: whitesmoke;
      margin-top: 0.45em;
      margin-bottom: 0.01em;
      white-space: nowrap;
      mix-blend-mode: difference;
    }
 

    #online p {
      font-family: ABC Oracle Triple;
      font-size: 100px;
      line-height: 0.9;
      text-align: center;
      color: whitesmoke;
  
      margin: 0;
      width: 95%;
    }

    .animate-line-height {
        transition: line-height 1000ms ease;
    }

    .animate-font-size {
      transition: font-size 1000ms ease;

    }

    .ghost {
      visibility: hidden;
    }

    .layer {
      position: absolute;
      pointer-events: none;
      will-change: transform, clip-path;
      transition: transform 0.3s ease;
    }

    .layer.left {
      clip-path: inset(0 calc(100% - var(--mx)) 0 0);
      transform: translateY(0px);
    }

    .layer.right {
      clip-path: inset(0 0 0 var(--mx));
      transform: translateY(0px);
    }

    .wrap:hover .layer.left {
      transform: translateY(-20px);
    }

    .wrap:hover .layer.right {
      transform: translateY(20px);
    }





    .counter-scroll-text {
      position: fixed;
      left: 4%;
      max-width: 30%;
    }

    .counter-scroll-text-2 {
      position: fixed;
      right: 4%;
      max-width: 35%;
      text-align: right;
    }

    .counter-scroll-text p {
      display: inline !important;
      margin: 0;
      font-family: Times New Roman !important;
      line-height: normal;
      text-align: left;
      font-size: 34px !important;
      line-height: 1.3 !important;
      color: #000 !important;
      background-color: #fffffff7 !important;
      padding: 4px 8px !important;
      box-decoration-break: clone;
      -webkit-box-decoration-break: clone;
    }



    .banner-wrap {
      position: fixed;
      bottom: -20px;
      left: 0;
      width: 100%;
      overflow: hidden;
      background: none;
      padding: 15px 0;
      box-sizing: border-box;
      z-index: 10;
      mix-blend-mode: difference;
      transform: translateZ(0);

    }

    .banner-track {
      display: inline-flex;
      flex-wrap: nowrap;
      animation: scroll-left 15s linear infinite;
      will-change: transform;
      backface-visibility: hidden;
    }

    .banner {
      flex-shrink: 0;
      white-space: nowrap;
      font-family: Arial Narrow;
      font-size: 100px;
      line-height: 1;
      color: whitesmoke;
      text-box-trim: trim-both;
      text-box-edge: cap alphabetic;

    }

    .banner-dif-font {
      font-family: Apple Garamond;
      font-size: 113px;
      line-height: 1;
    }

    .banner-wrap.flash-red .banner {
      color: rgb(226, 26, 26);
    }

    @keyframes scroll-left {
      from { transform: translateX(-50%); }
      to { transform: translateX(0); }
    }

    .timeoverlay {
      position: fixed;
      top: 0;
      right: 0;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      z-index: 100;
      width: fit-content;
      color: white;
      font-size: 1.75vh;
    }

    .timeoverlay > div {
      --time-indent: 0px;
      transform: translateX(calc(-1 * var(--time-indent)));
      transition: transform 0.2s linear;
    }


    html.cover-lock,
    body.cover-active {
      overflow: hidden;
      height: 100vh;
    }

    .cover {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: transparent;
      opacity: 1;
      transition: opacity 0.6s ease;
    }

    .cover.cover-hide {
      opacity: 0;
      pointer-events: none;
    }

    .cover-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: fill;
    }

    .cover-img-a {
      animation: cover-flicker-a 0.18s steps(1, end) infinite;
    }

    .cover-img-b {
      animation: cover-flicker-b 0.18s steps(1, end) infinite;
    }

    @keyframes cover-flicker-a {
      0%, 49% { opacity: 1; }
      50%, 100% { opacity: 0; }
    }

    @keyframes cover-flicker-b {
      0%, 49% { opacity: 0; }
      50%, 100% { opacity: 1; }
    }



.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background-image: url("Images/260701-startpage-black.png");
  background-size: cover;
}

@media (aspect-ratio: 1/1) {
  .overlay {
    background-image: url("Images/260701-startpage-hochkant-white.png");
  }
}

.highlight-outline {
  display: inline-block;
}

.highlight-outline::before {
  content: attr(data-text);
  position: absolute;
  top: auto;
  left: 0;
  z-index: -2;
  color: transparent;
  -webkit-text-stroke: 1px whitesmoke;
  pointer-events: none;
  white-space: normal;

  font-family: Helvetica Neue;
  font-size: 240px;                          
  line-height: 0.3;                          
  text-align: left;
  transform: translateX(-80px); 
  margin-right: 180px;
}