/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */


  
}
/* Layout
------------------------------------------*/

header,
body
{
background-color:  
}

}

    max-width: 100%;
}

.wrapper {
    padding: 1em 0;
    background: thistle;
}

img {
    max-width: 100%;
    height: auto;
}


/* Flex Box Gallery
------------------------------------------*/


.gallery-2 {
    background: thistle;
    display: flex;
}


.gallery-2 img {
    display: block;
}


.gallery-2 {
    justify-content: space-around;
    flex-wrap: wrap;
}



/* just copy this bit if you want the newspaper effect */



.newspaper {
  background: thistle;
  margin: 5%;
  column-count: 3; /* change this to 4 or 2 to try a different number of columns */
  column-gap: 8%;


/* stop copying here for newspaper effect -- */ 





/* Flex Box Gallery try these ones by changing it to .gallery-2
---------------------------------------------------------------*/


.gallery {
    justify-content: flex-end;
    flex-wrap: wrap;
}



.gallery-3 {
    justify-content: space-between;
    flex-wrap: wrap;
}
