
.gallery {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 20px;
padding: 20px;
max-width: 1200px;
margin: auto;
}

.gallery img {
width: 100%;
aspect-ratio: 1 / 1;
object-fit: cover;
object-position: center;
margin-left: 5px;
margin-right: 5px;
border-radius: 10px;
cursor: pointer;
box-shadow: 3px 2px 3px #5b5b5b;
transition: transform 0.3s ease;
/*transition: transform 0.3s ease, box-shadow 0.3s ease;*/
}

.gallery img:hover {
transform: scale(1.04);
box-shadow: 3px 2px 3px #5b5b5b;
/*box-shadow: 0 10px 20px rgba(0,0,0,0.2);*/
}

.fullscreen {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.8);
display: none;
justify-content: center;
align-items: center;
z-index: 1000;
}

.fullscreen img {
max-width: 90%;
max-height: 90%;
border-radius: 10px;
object-fit: contain;
}

.close-btn {
position: absolute;
top: 20px;
right: 20px;
background-color: rgba(255, 255, 255, 0.5);
color: white;
border: none;
font-size: 24px;
border-radius: 50%;
padding-top: 3px;
padding-bottom: 5px;
padding-left: 10px;
padding-right: 10px;
cursor: pointer;
}

.close-btn:hover {
background-color: rgba(255, 255, 255, 0.8);
}