/univers_d'amour
├── index.html
└── style.css
معرض صوري
📸 معرض صوري
body {
font-family: "Cairo", sans-serif;
text-align: center;
background-color: #fafafa;
margin: 0;
padding: 20px;
}
h1 {
color: #333;
}
.gallery {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 15px;
margin-top: 30px;
}
.gallery img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
transition: transform 0.2s;
}
.gallery img:hover {
transform: scale(1.05);
}
Commentaires
Enregistrer un commentaire