body {
  background-color: #D9D9D9;
  color: #ADA573;
}
  
canvas {
  display: block;
}
  
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

/* titel */
.titel{
  max-width: 1000px;
  margin: auto;
  padding: 0 5%;
}
h1{
  font-family: 'Open Sans', sans-serif;
  text-align: center;
  font-size: 116px;
  display: inline-block;
  width: 100%;
}

h2{
  width: 100%;
  font-family: 'Open Sans', sans-serif;
  
  font-size: 35px;
}

.ondertitel{
  width: 100%;
  display: flex;
}
.ondertitel1{
  width: 24%;
  text-align: left;
}
.ondertitel2{
  width: 18%;
  text-align: center;
}
.ondertitel3{
  width: 42%;
  text-align: right;
}
.ondertitel-{
  width: 8%;
  text-align: center;
}

@media  screen and (max-width: 1000px) {
  h1{
    font-size: 12vw;
  }
  h2{
    font-size: 3.5vw;
  }
}

/* blokken */
a{
  text-decoration: none;
  color: #ADA573;
}
.blok{
  max-width: 900px;
  display: block;
  margin: 10px auto;
  height: 180px;
  background-color: #C4BABE;
  transition: padding 0.15s ease;
}
.blok:hover{
  transition: padding 0.15s ease;
  padding: 0 15px;
}
.fotos{
  display: flex;
  justify-content: center;
  align-items: center;
  float: left;
  width: 28%;
  min-width: 180px;
  height: 180px;
  overflow: hidden;
  padding: 7px 15px;
}
h3{
  font-family: 'Open Sans', sans-serif;
  text-align: center;
  font-size: 50px;
  padding-top: 56px;
}