body { background-color: black; color: white; font-family: Arial, sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } .gallerie_images{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; max-width: 1200px; width: 100%; } .gallerie_images img { width: 100%; border-radius: 8px; transition: transform 0.2s; } .gallerie_images img:hover { transform: scale(1.05); }