* {
  box-sizing: border-box;
  background-image: url('background2.png');
  
}

h1 {
  text-align: center;
  font-family: SilkRemington;
}

body {
  margin: 0;
  font-family: SilkRemington;
}

div {
  text-align: center;

}

.header {
  text-align: center;
  padding: 32px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

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

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

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 1000px) {
  .column {
    -ms-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%;
    flex: 100%;
    max-width: 100%;
  }
}

@font-face {
  font-family: SilkRemington;
  src: url('SilkRemington-SBold.ttf') format('truetype');
}

/* .newsbox {
  background: rgba(0, 0, 0, 0.3);
  height: 300px;
  width: 30%;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
} */

.footer {
  bottom: 0;
  width: 100%;
  text-align: center;
  font-size: small;
}

#photo {
  cursor: pointer;
  transition: 0.3s;
}

#photo:hover {
  opacity: 0.7;
}

.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  padding-top: 50px;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.9);
  /* Black w/ opacity */
}

.modal-content {
  /* margin: auto;
  display: block;
  height: 90%; */

  max-width: 90vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
}




.close {
  position: absolute;
  top: 8px;
  right: 35px;
  color: rgb(0, 0, 0);
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  height: 5px;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

@media only screen and (max-width: 700px) {
  .modal-content {
    width: 100%;
  }
}





.gallery {
  margin-top:2rem;
  width:90%;
  margin-left: auto;
  margin-right: auto;
}

.gallery > div {
  columns:3;
  gap:1.25rem;
  padding-top:1.25rem;
}

.gallery img {
  display:block;
  width:100%;
  margin-bottom:1.25rem;
}

@media (max-width:48rem) {
 .gallery > div {
   columns:2;
  }
}

@media (max-width:32rem) {
 .gallery > div {
   columns:2;
  }
}

a.button {
  font-family: SilkRemington;
  font-size: large;

  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;

  text-decoration: none;
  color: initial;
  border: 1px solid black;
  padding: 2px;
}