    @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;600&display=swap');

    body {
      margin: 0;
      font-family: 'Montserrat', sans-serif;
      background: #fff;
      color: #111;
    }

    header {
      background: url('../media/background.png') center/cover no-repeat;
      height: 90vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      position: relative;
    }

    header::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.3);
    }

    .logo {
      z-index: 1;
      margin-bottom: 1rem;
    }


    .logo img {
      width: 450px;
      height: auto;
      display: block;
    }

@media only screen and (max-width: 600px) {
    .logo img {
      width: 250px;
      height: auto;
      display: block;
    }
}

    .anfahrt img {
      width: 868px;
      height: auto;
      display: block;
      border-radius: 18px
    }

@media only screen and (max-width: 600px) {
    .anfahrt img {
      width: 398px;
      height: auto;
      display: block;
      border-radius: 18px
    }
}


    header h1 {
      font-size: 4rem;
      font-weight: 600;
      z-index: 1;
      letter-spacing: 4px;
    }

    main {
      max-width: 900px;
      margin: 0 auto;
      padding: 3rem 1rem;
    }

    section {
      margin-bottom: 3rem;
    }

    h2 {
      font-weight: 600;
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    p {
      font-size: 1.1rem;
      line-height: 1.6;
    }

    .info {
      background: linear-gradient(135deg, #ff006e, #ffbe0b);
      color: white;
      padding: 2rem;
      border-radius: 1rem;
      text-align: center;
    }

    .info h3 {
      margin: 0 0 1rem;
      font-size: 1.5rem;
    }

    footer {
      text-align: center;
      padding: 2rem 1rem;
      background: #111;
      color: white;
      font-size: 0.9rem;
    }

    footer a {
      color: white;
      margin: 0 0.5rem;
      text-decoration: none;
    }

    footer a:hover {
      text-decoration: underline;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    .container {
      display: grid;
      grid-template-columns: auto auto;
      padding: 10px;
    }
    .container > div {
      padding: 10px;
      font-size: 30px;
      text-align: center;
    }