@import 'nav.css';

body {
  padding: 0;
  margin: 0;

  background: #fcfcfc;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 40vh;

  background-image: url( "../images/achtergrond.jpg" );
  background-size: cover;
  background-position: 50% 36%;
  background-repeat: no-repeat;

  font-family: "Old Standard TT", serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  color: #fcfcfc;
  text-shadow: 1px 1px 3px rgba( 0, 0, 0, 0.9 );

  font-size: 1.5em;
}

header h1 {
  margin-top: 3em;
}

header h2 {
  margin-top: -1em;
}

footer {
  background: #ba4444;
  color: #fcfcfc;
  padding: 30px;
  text-align: center;
}

article, section {
  margin: 0 auto;
  max-width: 800px;
  padding: 20px;

  font-size: 14px;
  font-family: sans-serif;
  color: #444444;
  line-height: 1.8;
}

article p, section p {
  text-align: justify;
}

article a {
  background: #ba4444;
  padding: 10px;
  border-radius: 5px;
  color: white;
}

article a:hover, article a:active {
  background: #d16a57;
  box-shadow: 2px 2px 5px #0004;
  color: white;
}

img {
  height: auto;
  max-width: 100%;
}

div.aspect-16-9 {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  margin: 0 auto;
}

iframe {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
}

a {
  text-decoration: none;
  color: #ba4444;
  transition: all 0.3s;
}

a:hover {
  color: #d16a57;
}

h1 {
  font-size: 2.5em;
}

div.column {
  flex: 1;
}
div.columns {
  display: flex;
}
