/* style up gallery */



/* .header-gallery {
	padding: 40px;  
} */

.back-to-projects {
  margin: 0 auto 0 auto;
  text-align: center;
}

.back-to-projects a {
  background-color: var(--yellow);
  padding: 10px;
}

/* .gallery-info {
  display: none;
} */

.analog-images {
  max-width: 1920px;
  display: flex;
  

  flex-direction: row;
  flex-wrap: wrap;
  
  justify-content: space-evenly;
  align-items: center;
  align-content: center;
}

.analog-images img {
  flex-basis: 33.333%;
/*   height: 50%; */
  margin: 20px;
}

/* Breakpoint for tablet */ 


@media (max-width: 768px) {
  /* style up gallery */

.back-to-projects {
  margin: 20px auto 10px auto;
  text-align: center;
}

.back-to-projects a {
  background-color: var(--yellow);
  padding: 10px;
}
  
  .analog-images img {
  flex-basis: 50%;
  margin: 10px;
}
  
}

/* Breakpoint for smartphone */ 


@media (max-width: 480px) {
  /* style up gallery */

.back-to-projects {
  margin: 20px auto 10px auto;
  text-align: center;
}

.back-to-projects a {
  background-color: var(--yellow);
  padding: 5px;
}
  
  .analog-images img {
	flex-basis: 100%;
  margin: 5px;
}
  
}