{ box-sizing: border-box; margin: 0; padding: 0; } body { font-family: Andalus; color: #000000; line-height: 1.6; background-color:#FFFFFF; } nav { display: flex; align-items: center; gap: 1.5rem; padding: 1rem 2rem; background: #ffff00; border-bottom: 1px solid #e2e8f0; flex-wrap: wrap; } nav a { text-decoration: none; color: #2563eb; font-weight: 500; } nav a:hover { text-decoration: underline; } .logo { height: 40px; } .galerie { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; margin: 1rem 0; } .galerie img { width: 100%; height: 200px; object-fit: cover; border-radius: 8px; cursor: pointer; transition: transform 0.2s; } .galerie img:hover { transform: scale(1.03); }