body {
  background-color: white;
  font-family: Times New Roman;
  color: white;
  overflow-x: hidden;
}

.plss{

  display: flex;
  justify-content: center;
}

.top-left {
  position: absolute;
  top: 8px;
  left: 16px;
}


.home {
  display: flex;
  position: absolute;
  max-width: 150px;
  min-width: 150px;
  height: auto;
  margin-left: 3%;
  margin-right: 3%;
  z-index: 1;
 
}

#photos {
  position: absolute;
  top: 5%;  
  left: 10%;
  width: 80%;

  line-height: 0;
  column-count: 4;
  column-gap: 0;
  max-width: 1200px;
}

#photos img {
  width: 100% ;
  height: auto;
  display: inline-block;
    box-shadow:
    1px 5px 12px rgba(0,0,0,0.1);
}

.fridge-img {
  width: 100%;
  height: auto;

  transform:
    translate(var(--x, 0px), var(--y, 0px))
    rotate(var(--r, 0deg));

  transition: transform;
  transform-origin: center;

  position: relative;
  z-index: 1;
}



#fridge {
  margin: 40px 0 0 0;
  position: relative;
  width: 100%;
  max-width: 1400px;
}

#fridge-bg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}






#Note {
  position: absolute;
  bottom: 30px;
  left: 30px;

  max-width: 250px;

  padding: 12px;
  background: #fff7a8;

  font-size: 20px;
  color: #222;

  box-shadow: 4px 4px 0 rgba(0,0,0,0.2);

  z-index: 2;
}




#FullImage{
  padding: 24px;

  max-width: 98%;
  max-height: 98%;

  transform: scale(0.4);
  transition: transform 0.1s ease-out;
}



#FullImageView {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background-color: rgba(0,0,0,0.4);

  justify-content: center;
  align-items: center;

  opacity: 0;
  visibility: hidden;
  z-index: 1;

  transition:
    opacity 0.1s ease-out,
    visibility 0.1s ease-out;
}



#FullImageView.active {
  opacity: 1;
  visibility: visible;
}

#FullImageView.active #FullImage {
  transform: scale(1);
}




#CloseButton{
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}







@media (max-width: 1200px) {
  #photos {
  column-count:         4;
  }
}
@media (max-width: 1000px) {
  #photos {

  column-count:         3;
  }
}
@media (max-width: 800px) {
  #photos {


  column-count:         2;
  }
}
@media (max-width: 400px) {
  #photos {

  column-count:         1;
  }
}