body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 100vh;
  max-height: 100vh;
  padding-top: 20px;
}
.gallery .gallery-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: 43vh;
  padding: 0px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  position: relative;
  width: 30vh;
  margin: 0px;
}
.gallery .gallery-item:hover {
  transform: scale(1.02);
  z-index: 1000;
}
.gallery .gallery-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.fullscreen_body
{
  padding: 55px 20px !important;
}
.works
{
  padding: 25px 0;
  width: initial;
  display: flex;
  justify-content: center;
  /*align-items: center;*/
  flex-direction: column;
  margin: 40px;
}