body {
        margin: 0;
        font-family: "Fredoka One";
        font-size: 22px;
      }
      .hinter {
        height: 100vh;
        width: 100%;
        object-fit: cover;
        filter: brightness(0.5);
      }

      .container {
        position: absolute;
        right: 32px;
        top: 16px;
        font-size: 24px;
      }

      .menu-link {
        color: white;
        text-decoration: none;
      }

      .menu-link:hover {
        text-decoration: underline;
        color: aqua;
        margin-left: 16px;
      }

      .logo {
        position: absolute;
        left: 32px;
        top: 10px;
        height: 50px;
        width: 50px;
      }

      .headline {
        position: absolute;
        left: 50px;
        top: 200px;
        color: white;
        font-size: 70px;
        width: 500px;
        text-shadow: 5px 5px 5px rgba(0, 0, 0, 1);
      }

      .yellow {
        color: #ffdd03;
      }

      .button {
        background-color: #ffdd03;
        padding: 8px;
        color: black;
        border-radius: 8px;
        box-shadow: 5px 5px 5px rgba(0, 0, 0, 1);
      }

      .description {
        height: 450px;
        padding: 30px 100px;
        display: flex;
        background-color: gray;
        gap: 50px;
      }

      .breit {
        width: unset;
        font-size: 20px;
        color: white;
      }

      h2 {
        text-align: center;
        font-size: 50px;
      }

      .Karte {
        box-shadow: 5px 5px 5px rgba(0, 0, 0, 1);
        border-radius: 8px;
      }

      .breit2 {
        width: 25%;
        font-size: 20px;
        color: white;
      }

      .video-container {
        width: unset;
        display: flex;
        justify-content: center;
      }

      .youtube {
        width: calc(100vw * 0.4);
        height: calc(56.25vw * 0.4);
      }

      @media (max-width: 700px) {
        .description {
         flex-direction: column; 
         align-items: center;
         height: unset;
        }

        .navigation {
          display: none;
        }
      }
