/* CSS nur für mobile Geräte */
@media (max-width: 767px) {
    /* Deine CSS-Regeln für mobile Geräte hier */
    header .header-content {
      display: none;
    }

    header {
      background-repeat: no-repeat;
      background-position: right;
      height: 50vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0 20px;
    }

    nav, nav .container {
      display: block;
    }

    nav .logo {
      display: block;
      margin: 0 auto;
      margin-top: 15px;
    }

    nav {
      margin: 0;
      padding: 0;
    }

    nav .nav-links {
      display: block;
      width: 100%;
      text-align: center;
    }

    nav .nav-links li {
      display: inline-block;
      text-align: center;
      margin: 5px 15px;
    }

    td {
      font-size: 9px !important;
    }
}
