/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
    .topnav a:not(:first-child) {display: none;}
    .topnav a.icon {
      float: right;
      display: block;
    }
  }
  
  /* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
  @media screen and (max-width: 600px) {
    .topnav.responsive {position: relative;}
    .topnav.responsive a.icon {
      position: absolute;
      right: 0;
      top: 0;
    }
    .topnav.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
  }
  
@media screen and (min-width: 600px) {
    #eersteitem {
      margin-left: 100px;
    }
  }
  
  /* Add a black background color to the top navigation */
  
  .topnav {
    color: #46321f;
    overflow: hidden;
    position: fixed;
    background-color: white;
    width: 100%;
    width: 100%;
    z-index: 2;
    box-shadow: 0px 4px 4px rgba(119, 117, 117, 0.25);
  }
  
  /* Style the links inside the navigation bar */
  .topnav a {
    float: left;
    display: block;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  }
  
  .topnav a:hover{
    color: #cfc5b2; 
  }
  
  /* Hide the link that should open and close the topnav on small screens */
  .topnav .icon {
    display: none;
  }
  
  @media screen and (max-width: 600px) {
    .topnav a{
     font-size: 1rem;
    }
  }

  #items{
    margin-left: 100px;
  }

  @media screen and (max-width: 600px) {
    #items {
      margin-left: 0px;
    }
  }
  
/*Styling van de pagina*/
  
body{
    font-family: 'Syne' !important;
    font-size: 22px;
  }
  
.sectie1{
    height: auto;
    padding-top: 100px;
    padding-bottom: 150px;
}

.sectie1 h1{
    margin-top: 150px;
    color: #46321f;
}

#fotowiebenik{
  background-image: url(/wiebenik.jpg);
  background-size: cover;
}
  
/* footer */
  footer{
    color: white;
    height: auto;
    text-align: center;
    background-color: #cfc5b2;
  }
  
  .footeritems{
    padding-top: 50px;
  }
  
  .footeritems a{
    text-decoration: none;
    color: white
  }
  
  .footeritems a:hover{
    color: #46321f;
  }
  
  footer p{
    font-weight: 100;
    padding-bottom: 50px;
    padding-top: 50px;
  }
  