.galery{
  position: fixed;
  z-index: 100;
  display: flex;
  flex-direction: column;
  width: 0%;
  height: 99.9%;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background-color: #00000075;
  top : 0;
  left : 0;
}

.galery_buttons{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap:10px;
}

.img_placeholder
{
  block-size: fit-content;
  image-rendering: optimizeSpeed;
  width: 45em;
}

.img_div
{
    height: 90%;
    display: flex;
    flex-direction: column;

}

.galery_preview_grid
{
  display: flex;
  gap : 10px;
}

.galery_preview
{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 25%;
}

.img_preview
{
  max-width: 10em;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
}

.img_preview:hover
{
  cursor: pointer;
}
.galery_buttons:hover
{
  cursor: pointer;
}