    html {
      scroll-behavior: smooth;
    }
    body {
      font-family: 'Space Grotesk', sans-serif;
      background-color: #fcfcfc;
      color: #111;
      margin: 0;
      padding: 0;
    }
    section {
      padding: 8rem 2rem;
      max-width: 1000px;
      margin: 0 auto;
      position: relative;
    }
    header {
      display: flex;
      justify-content:space-between;
      align-items: center;
      padding: 2rem;
      position: fixed;
      top: 0;
      left: 0;
      right:0;
      background: rgba(255, 255, 255, 0.573);
      backdrop-filter: blur(12px);
      z-index: 100;
      border-bottom: 1px solid #eee;
    }
    .logo {
      font-weight: 700;
      font-size: 1.2rem;
      letter-spacing: -0.5px;
      color: inherit;
      text-decoration: none;
    }
    nav ul {
      list-style: none;
      display: flex;
      gap: 2rem;
      margin: 0;
      padding:0;
    }
    nav a {
      text-decoration: none;
      color: #111;
      font-weight: 500;
      position: relative;
    }
    nav a::after {
      content: '';
      position: absolute;
      width: 0%;
      height: 2px;
      bottom: -3px;
      left: 0;
      background-color: #111;
      transition: 0.3s ease;
    }
    nav a:hover::after {
      width: 100%;
    }
    .hero {
      text-align: center;
      padding-top: 10rem;
    }
    .hero h1 {
      font-size: clamp(2rem, 8vw, 4.5rem);
      margin-bottom: 1rem;
      line-height: 1.1;
    }
    .hero p {
      font-size: 1.2rem;
      max-width: 600px;
      margin: 0 auto 2rem;
      color: #444;
    }
    .word-box {
      display: inline-block;
      min-width: 130px;
      padding: 0.4rem 0.3rem;
      background-color: #ebddff86;
      border-radius: 6px;
      font-weight: 500;
      transition: all 0.2s ease;
    }
    .cta-button {
      display: inline-block;
      padding: 1rem 2rem;
      background: #111;
      color: #fff;
      border-radius: 100px;
      text-decoration: none;
      font-weight: 500;
      transition: transform 0.2s;
    }
    .cta-button:hover {
      transform: scale(1.05);
    }
    .section-title {
      font-size: 2rem;
      margin-bottom: 2rem;
      text-align: center;
    }
    .about p, .fun p {
      font-size: 1.1rem;
      color: #333;
      max-width: 700px;
      margin: 0 auto;
      text-align: block;
    }

    .about {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 3rem;
      justify-content: center;
    }
    .about-text {
        flex: 1 1 400px;
        font-size: 1.1rem;
        color: #333;
    }
      .about-image {
        flex: 1 1 300px;
        max-width: 250px;
        border-radius: 50px;
        overflow: hidden;
    }
      .about-image img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 12px;
    }

  .project-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }
    .project-card {
      text-decoration: none;
      color: inherit;
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
    }
    .project-card:hover {
      transform: translateY(-4px);
    }
   
    .project-thumb {
      height: 200px;
      overflow: hidden;
    }

    .project-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 0; /* optional: sonst wirkt das Bild 'abgeschnitten' */
    }
    
    .project-card h3 {
      margin: 1rem;
      font-size: 1.2rem;
    }
    .project-card p {
      margin: 0 1rem 1.5rem;
      color: #666;
      font-size: 0.95rem;
    }

    .database{
      padding: 1rem 2rem;
      max-width: 1000px;
      margin:  auto;
      position: relative;
    }
    
    footer {
      text-align: center;
      padding: 4rem 1rem;
      font-size: 0.9rem;
      color: #777;
    }
