/* Sidebar en sticky header, bij Chips die je niet kunt eten */
body {
  margin: 0;
    font-family: Verdana;
    background: #000037;
}

.sidebar {
  margin: 0;
  padding: 0;
  width: 200px;
  background-color:#4A79A6;
  position: fixed;
  height: 100%;
  overflow: auto;
}

.sidebar a {
  display: block;
  color: #E8F0F7;
  padding: 16px;
  text-decoration: none;
}
 
.sidebar a.active {
  background-color: #4CAF50;
  color: white;
}

.sidebar a:hover:not(.active) {
  background-color: #555;
  color: white;
}

div.content {
  margin-left: 200px;
  padding: 1px 16px;
  height: 5000px;
   background-color: #E8F0F7;
}
/*..... */
@media screen and (max-width: 700px) {
  .sidebar {
    width: 100%;
    height: auto;
    position: relative;
  }
  .sidebar a {float: left;}
  div.content {margin-left: 0;}
}

@media screen and (max-width: 400px) {
  .sidebar a {
    text-align: center;
    float: none;
  }
}


div.headersticky {
	width:100%;
  	position: -webkit-sticky;
 	position: sticky;
  	top: 0;
  	background-color:#f1eee7;
	padding: 1px;
  
    text-align: center;
}

/* Header/Blog Title: ; de header bij grote schermen versmallen */
/* Extra large devices (large laptops and desktops, 1400px and up) */
@media only screen and (min-width: 1400px) {
div.headersticky {
    width: 65%;
    text-align: center;}
}