:root {
  --pad: 3%;
}
@media (min-width: 1140px) {
  :root {
    --pad: 15px;
  }
}
* {
  box-sizing: border-box;
  transition: all 0.2s;
}
body {
  margin: 0;
  color: #333;
  font-family: sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  background-image: url('/img/hannyulrich_overlookingriverijssel_bg.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-family: 'Alegreya', serif;
  font-weight: 500;
}
body h1 a,
body h2 a,
body h3 a,
body h4 a,
body h5 a,
body h6 a {
  color: black;
  text-decoration: none;
}
body h1 a:hover,
body h2 a:hover,
body h3 a:hover,
body h4 a:hover,
body h5 a:hover,
body h6 a:hover,
body h1 a:active,
body h2 a:active,
body h3 a:active,
body h4 a:active,
body h5 a:active,
body h6 a:active,
body h1 a:visited,
body h2 a:visited,
body h3 a:visited,
body h4 a:visited,
body h5 a:visited,
body h6 a:visited {
  color: black;
  text-decoration: none;
}
body a {
  color: #797039;
}
body a:hover,
body a:active,
body a:visited {
  color: #797039;
}
.wrapper {
  max-width: 1140px;
  margin: 0 auto;
  background: #e9e9e9;
  box-shadow: 0 0 6px #999;
  border-radius: 3px;
}
@media (min-width: 1140px) {
  .wrapper {
    margin: 60px auto;
  }
}
.wrapper header {
  display: flex;
  justify-content: center;
  text-align: center;
}
.wrapper header a {
  text-decoration: none;
  color: #333;
  font-weight: normal;
}
.wrapper .cols {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1140px) {
  .wrapper .cols {
    flex-direction: row;
  }
}
.wrapper .cols nav {
  flex: 1;
  padding: var(--pad);
}
.wrapper .cols nav ul {
  margin: 0 0 0 22.5px;
  padding: 0;
  list-style-type: circle;
}
.wrapper .cols main {
  margin: var(--pad);
  padding: var(--pad);
  background: #fff;
  box-shadow: inset 0 0 6px #999;
  border-radius: 3px;
  flex: 3;
}
.wrapper .cols main .intro {
  text-align: center;
}
.wrapper .cols main .gallery {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-evenly;
}
.wrapper .cols main .gallery a {
  display: block;
}
.wrapper .cols main .gallery img {
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 2px;
  margin: 7.5px;
}
.wrapper .cols aside {
  flex: 1;
  padding: var(--pad);
}
.wrapper .cols aside ul {
  margin: 0 0 20px 22.5px;
  padding: 0;
}
.wrapper footer {
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: smaller;
  text-align: center;
}
@media (min-width: 1140px) {
  .wrapper footer {
    flex-direction: row;
  }
}
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
/*# sourceMappingURL=screen.css.map */