:root {
    --tekstBasis: #000000;
    --zwart: #2F332C;
    --wit: #ffffff;
    --donker: #378969;
    --licht: #E5EDE2;
    --highlight: #72D96E;
  }

.full-cover-image {
    object-fit: cover;
    height: 100vh;
    width: 100%;
}

[class^="col-sm-"] {
  overflow-y: scroll;
  background-color: #ffffff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

main {
  margin-top: 20px;
  min-height: calc(100vh - 130px); /* 110px = 50px (topBar) + 60px (footer) + 20px (margintop) */
}


body::after {
  content: "";
  background: url("/static/images/background_train1.jpg");
  background-attachment: scroll;
  background-size: cover;
  background-position: left center;
  opacity: 0.5;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: fixed;
  z-index: -1;
  height: 100vh;
}