@import url("https://fonts.googleapis.com/css2?family=Montserrat&family=Staatliches&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans&display=swap");
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  background-color: black;
  margin: 0;
  font-family: Arial;
  color: white;
  font-family: Staatliches;
}

.df {
  text-align: center;
  /*background-image: url("/images/logo/alastor_white_logo.png");*/
  padding: 32px;
}

h1 {
  color: white;
}

p {
  color: white;
}

h1 {
  font-size: 4rem;
  padding-bottom: 5px;
}

.cap {
  font-size: 1rem;
  font-family: "Open Sans";
}

.row {
  display: -ms-flexbox;
  /* IE10 */
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  /* IE10 */
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.column {
  -ms-flex: 25%;
  /* IE10 */
  -webkit-box-flex: 25%;
          flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
  padding: 12px;
}

.column img:hover {
  opacity: 0.8;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (min-width: 1200px) {
  .row {
    /* margin-left: 180px !important;
        margin-right: 180px !important; */
  }
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    -ms-flex: 50%;
    -webkit-box-flex: 50%;
            flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    -ms-flex: 100%;
    -webkit-box-flex: 100%;
            flex: 100%;
    max-width: 100%;
  }
}
/*# sourceMappingURL=style_photos.css.map */