

/* Three image containers (use 25% for four, and 50% for two, etc) */

.pg-container {
    display: flex;
    flex-direction: row;
    max-width: 1400px;
    column-gap: 5px;
    row-gap: 5px;
    text-align: center;
    justify-content: space-between;
    
}



/* Resize images */
.pg-container img {
  width: 100%;
  height: auto;
  
}



.pg-content {
  width: 90%;
  margin: 0 auto;
  
  display: grid;
  

}




.pg-wrapper {
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
  max-width: 1440px;
  box-sizing: border-box;
}




