/* pop up stuff */

#overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0,0,0,0.8);
  display: none;
}

#popup {
  max-width: 800px;
/*  width: 80%; */
  max-height: 800px;
/*  height: 80%; */
  padding: 20px;
  position: relative;
  background: white;
  margin: 20px auto;
  
  top: 50%;
  transform: translateY(-50%);
}


/******************************************/




.container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 1rem;
}
.responsive-image {
  max-width: 100%;
}

.cell {
}
.cell img {
  display: block;
  border-radius: 15px;
}

/* mobile */
@media screen and (max-width: 599px) {
  .cell img {
	margin: 1rem;
  }
}

/*tablet*/
@media screen and (min-width: 600px) {
  .grid {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .cell {
    width: calc(50% - 2rem);
	margin: 1rem;
  }
}

/*desktop*/
@media screen and (min-width: 1000px) {
  .cell {
    width: calc(33.3333% - 2rem);
	margin: 1rem;
  }
}

