.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery-item {
  list-style: none;
  margin: 24px;
}

.gallery-image {
  width: 360px;
  height: 200px;
}

.modal {
  width: 500px;
  padding: 20px;
  user-select: none;
  background-color: white;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal img {
  border-radius: 8px;
  margin-bottom: 10px;
}
