*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing:border-box;
}
header {
  background: url(../img/header.jpg) top center;
  background-size: cover;
  position: relative;
}
.header-text {
  color: white;
  padding: 80px 40px 120px 40px;
  text-align: center;
}
h1 {
  font-family: 'Montserrat';
  font-size: 38px;
  padding: 30px;
}
h2 {
  font-family: 'Condiment';
  font-size: 48px;
  padding: 30px;
}
/* .header-text::before {
  position: absolute;
  content: "";
  display: block;
  border: solid 6px white;
  top: 10%;
  bottom: 10%;
  right: 10%;
  left: 10%;
  z-index: 0;
} */

.gallery {
  width: 100%;
  height: 100%;
  background-color: #1a252c;
  overflow: hidden;
  padding: 1%;
}

.landscape {
  width: 50%;
  float: left;
}
.portrait {
  width: 25%;
  float: left;
}
img {
  height: auto;
  width: 100%;
  opacity: 0;
}
figure {
  background-position: center;
  background-size: cover;
  margin: 0px;
  position: relative;
}
figure::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  border: 5px solid #1a252c;
}
footer {
  padding: 10px;
  background-color: #1a252c;
  color: white;
  text-align: center;
}
footer a {
  color: white;
  text-decoration: underline;
}

@media only screen and (max-width: 966px) {
  .landscape, .portrait {
    float: none;
    width: 100%;
  }
}
