@import url("https://fonts.googleapis.com/css?family=Montserrat:400,700");

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
   background-color: white;
}

body a, html a {
   text-decoration: none;
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 8%;
}

.headding {
   padding: 50px 8%;
}

.gallery {
    line-height:0;
    -webkit-column-count:5; /* split it into 5 columns */
    -webkit-column-gap:10px; /* give it a 5px gap between columns */
    -moz-column-count:5;
    -moz-column-gap:10px;
    column-count:5;
    column-gap:10px;
 }

 .gallery img {
    width: 100% !important;
    height: auto !important;
    margin-bottom:10px; /* to match column gap */
 }

 nav {
   list-style-type: none;
   font-weight: bold;
   font-size: xx-large;
}

a{
   text-decoration: none;
   color: black;
}

 @media (max-width: 1200px) {
    .gallery {
     -moz-column-count:    4;
     -webkit-column-count: 4;
     column-count:         4;
    }
 }
 @media (max-width: 800px) {
    .gallery {
     -moz-column-count:    2;
     -webkit-column-count: 2;
     column-count:         2;
    }
 }
 @media (max-width: 400px) {
    .gallery {
     -moz-column-count:    1;
     -webkit-column-count: 1;
     column-count:         1;
    }
 }