/* stylepimopheij_foto POP 2020 */

@font-face {
  font-family: pimopheij_foto;
  src: url(../font/OpenSans-Light.ttf);
}

.body{
  margin: 0px;
  background: black;
}

header {
    position: absolute;
    top: 0%;
    width: 98vw;
    height: 120px;
    z-index: 1;
}

h1 {
    font-family: pimopheij_foto;
    text-align: center;
    font-size: 120px;
    color: white;
    z-index: 1;
}

.content{
  display: block;
  position: relative;
  height: auto;
  padding-top: 0px;
  margin: 0px;
}

.gallerybig{
  display: grid;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)); 
  grid-template-rows: 400px;
  padding: 0px;
  width: 100%;
}

.gallery{
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 799px){
.gallery{
  height: 100%;
}
}

@media screen and (min-width: 800px){
.gallery{
  height: 400px;
}
}


.img{
  display: block;
  transition: 1s;
  padding: 0px;
  width: 150%;
}

.img:hover {
  filter: grayscale(100%);
  transform: scale(1.1);
}







/* stylepimopheij_foto POP 2020*/