* {
      -webkit-tap-highlight-color: transparent;
    }

    html, body {
      margin: 0;
      padding: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      background-color: black !important;
      color-scheme: dark;
      font-family: Arial, Helvetica, sans-serif;
      overscroll-behavior: none;
    }

    #bg-layer {
      position: fixed;
      background-color: black;
      background-image: url('../img/bg-aspen.png');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      pointer-events: none;
    }

    #bg-layer-shimmer {
      position: fixed;
      background-image: url('../img/bg-aspen.png');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      pointer-events: none;
      mix-blend-mode: screen;
      -webkit-filter: brightness(1.5);
      filter: brightness(1.5);
      -webkit-transform: translateZ(0);
      transform: translateZ(0);
      will-change: opacity;
      -webkit-animation: tremble 16s infinite ease-in-out;
      animation: tremble 16s infinite ease-in-out;
    }

    @-webkit-keyframes tremble {
      0%   { opacity: 0.5; }
      15%  { opacity: 0.85; }
      30%  { opacity: 0.6; }
      45%  { opacity: 0.92; }
      60%  { opacity: 0.55; }
      75%  { opacity: 1.0; }
      85%  { opacity: 0.7; }
      100% { opacity: 0.5; }
    }

    @keyframes tremble {
      0%   { opacity: 0.5; }
      15%  { opacity: 0.85; }
      30%  { opacity: 0.6; }
      45%  { opacity: 0.92; }
      60%  { opacity: 0.55; }
      75%  { opacity: 1.0; }
      85%  { opacity: 0.7; }
      100% { opacity: 0.5; }
    }

    #vignette {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(ellipse at center, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0) 80%);
      pointer-events: none;
      z-index: 0;
    }

    .content-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow-y: auto;
      overscroll-behavior-y: none;
      z-index: 1;
    }

    .inner-content {
      display: flex;
      gap: 10px;
      justify-content: center;
      flex-direction: column;
      align-items: center;
      min-height: 100%;
      padding: 10px 0 10vh 0;
      box-sizing: border-box;
    }

    

    

    .logotype{
        text-align: center;
        color: rgb(192, 192, 192);
    }

    h1, h2, h3 {
      font-weight: 100;
    }

    h2{
      font-size: 13px;
      white-space: nowrap;
      letter-spacing: 1px;
      font-weight: 300;
    }

    #link-section{
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-top: 20px;
      max-width: 350px;
    }

    .btn {
        border: 1px solid rgb(192, 192, 192);
        border-radius: 20px;
        padding: 10px 20px;
        background-color: transparent;
        text-decoration: none;
        color: rgb(192, 192, 192);
        cursor: pointer;
        transition: background-color 200ms ease-in-out, color 200ms ease-in-out;
        text-align: center;
    }

    @media (hover: hover) {
      .btn:hover {
          background-color: rgb(192, 192, 192);
          color: black;
      }
    }

    #quote-section {
      margin-top: 30px;
      text-align: justify;
      max-width: 45ch;
      color: rgb(192, 192, 192);
      font-size: 14px;
      line-height: 1.4;
      border-left: none;
      padding-left: 0;
    }

    .quote-author {
      font-size: 12px;
      margin-top: 5px;
      color: rgb(192, 192, 192);
    }

    #news-section {
      margin-top: 30px;
      text-align: left;
      max-width: 30ch;
      color: rgb(192, 192, 192);
    }

    #news-section h3 {
      font-size: 14px;
      margin-bottom: 15px;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    #news-section a {
      color: rgb(192, 192, 192);
      text-decoration: none;
      font-size: 14px;
      transition: color 200ms ease-in-out;
      display: block;
    }

    @media (hover: hover) {
      #news-section a:hover {
        color: white;
      }
    }

    .news-meta {
      font-size: 12px;
      margin-top: 5px;
      margin-bottom: 15px;
      color: rgb(192, 192, 192);
    }

    

    

    

    

    

    

    
    
    .container.show-link 
    
    @media (hover: hover) {
      .container:hover 
  a[href^="mailto:"]:not(.btn) {
            color: inherit !important;
            text-decoration: none !important;
        }
