* {
  box-sizing: border-box;
}

ul, li {
  list-style: none;
}

a {
    text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}


.gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;  
    padding: 16px; 
    margin: 0;
}

.gallery-item {
    flex-basis: calc((100% - 48px) / 3);
}

.modal {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 90vw; 
  max-height: 90vh; 
  overflow: hidden;
}

.modal img {
  width: 100%;
  height: 100%;
  object-fit: contain; 
  border-radius: 4px;  
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.5);
}


