@font-face {
    font-display: block;
    font-family: Oswald;
    font-style: normal;
    font-weight: 600;
    src: url(https://karate-pratteln.ch/wp-content/uploads/2024/01/oswald-v53-latin-600.woff2) format("woff2");
  }
  
  * {
    box-sizing: border-box;
  }
  
  body {
    min-height: 100vh;
    margin: 0;
    display: grid;
    place-items: center;
    background: rgba(42,46,64,1);
    font-family: "Oswald";
  }
  
  h1 {
    color: white;
    text-align: center;
    translate: 0 80px;
  }
  
  section {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
  /*   background-image: radial-gradient( at top right, rgba(42,46,64,0.54) 0%, rgba(42,46,64,1) 90%); */
    background-image: url(/assets/img/Mood-Bild-Shenxin-GmbH-Pratteln-Dojo-TCM-min.png);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.3;
  }
  
  .shenxin-link-wrapper {
    position: relative;
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 2;
  }
  
  .shenxin-kp-link {
    width: 50%;
    height: 100%;
    display: grid;
    place-items: center;
  }
  
  .shenxin-tcm-link {
    width: 50%;
    height: 100%;
    display: grid;
    place-items: center;
  }
  
  .shenxin-divider {
    width: 1px;
    height: 60%;
    background: #fff;
  }
  
  img {
    width: 200px;
  }
  
  .shenxin-logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .shenxin-logo-wrapper p {
    text-align: center;
  }

  @media (max-width: 768px) {
    h1 {
      translate: 0 0;
    }
    
    .shenxin-link-wrapper {
      flex-direction: column;
    }
    
    .shenxin-divider {
      width: 60%;
      height: 1px;
      background: #fff;
     }
  }