body {
  height: 100%;
  min-height: 100%;
  width: 100%;
  min-width: 360px !important;
  max-width: 1440px !important;
  margin: auto;
  background-color: #ebf3fa;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 17px;
}

.container {
  width: 90%;
  margin: auto;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  text-align: center;
}

.header {
  height: 220px;
  margin: 8px;
}

.header>.logo {
  height: 100%;
  min-width: 150px;
  max-width: 400px;
  margin-bottom: 15px;
}

.menu {
  font-family: "Abel", Helvetica, Arial, Lucida, sans-serif;
  height: 50px;
  background-color: rgb(34, 34, 34);
  vertical-align: middle;
}

.menu a {
  color: white;
  text-decoration: none;
  font-size: 22px;
  line-height: 50px;
  margin: 0 15px;
}

.menu>.selected {
  color: rgb(187, 219, 240);
}

.carousel {
  width: 100%;
  height: 28vw;
  max-height: 350px;
  overflow: hidden;
}

.carousel>.foto {
  width: 100%;
  top: 50%;
  transform: translateY(-32%);
}

.main {
  padding: 35px;
  text-align: left;
}

.main>.schilder {
  float: right;
  max-width: 250px;
  max-height: 375px;
  margin-top: 0;
  margin-left: 25px;
  margin-bottom: 25px;
  border-radius: 12px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
}

.werkgebied {
  width: 90%;
  margin: auto;
  text-align: center; 
  font-size: 10px; 
  color: gray;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: auto;
  background: rgb(34, 34, 34);
  font-size: 0.8em;
  text-align: center;
  padding: 14px 25px 14px 25px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.footer > div {
  margin-left: 5px; 
  margin-right: 5px;
}

.footer a {
  color: #ffffffd6;
  text-decoration: none;
}

.footer a i {
  margin-right: 10px;
}

.footer a:hover {
  color: #fff;
  text-decoration: underline;
}

/* === RESPONSIVENESS === */
@media (max-width: 500px) {
  .header {
    height: 180px;
    margin: 8px;
  }
  .main>.schilder {
    width: 100px;
    height: 150px;
  }

  body {
    font-size: 15px;
  }

  .menu a {
    font-size: 17px;
    margin: 0 8px;
  }

  .footer { font-size: 0.7em; }
  .footer > div { width: 100%; text-align: left !important; line-height: 2em;}

  .werkgebied { font-size: 8px;}
}

@media (min-width: 500px) and (max-width: 800px) {
  .main>.schilder {
    width: 150px;
    height: 225px;
  }

  body {
    font-size: 16px;
  }

  .menu a {
    font-size: 20px;
    margin: 0 8px;
  }

  .footer { font-size: 0.8em; }
  .footer > div { line-height: 2em; }

  .werkgebied { font-size: 9px;}
}

