.header {
    background-color: #078930;
    padding: 20px;
    text-align: center;
     font-family: Arial, sans-serif;
    background-color: rgb(234, 232, 232);
    background-image:url(background.jpg);
    background-size: cover;
    color: black;
      
  }
body{
  background-color: #078930;
}
  .logo{
    float:right;
    height: 90px;
}

.side{
  float: right;
  max-height: 300px;
  max-width: auto;
}
.grond{
  max-width: 60%;
  max-height: auto;
}

  footer {
    background-color: #0f47af;
    height: 10em;
    padding: 2em;
    text-align: center;
    font-weight: 900;
  }

  ol {
    list-style-type: decimal;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    margin-left: 30px;
  }
  
  ol li {
    margin-bottom: 10px;
  }
  
  ol li:before {
    color: #0f47af;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
  }

.kandidaatlijst{
  padding: 10px;
  width: 100%;
  background-color: #0f47af;
  color:#078930;
  }
.kandidaatlijst img{
  height: 150px;
  width:  150px;
  border-radius: 50%;
}
.kandidaatlist{
  padding: 10px;
  width: 100%;
  background-color: #078930;
  color: #0f47af;
}
.kandidaatlist img{
  height: 150px;
  width:  150px;
  border-radius: 50%;
}
.top-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to left,  #078930, #0f47af);
  color: white;
  border: 5px solid #000000;
  font-size: larger;
  height: 50px;
  padding: 1em;
}
.menu {

  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-decoration: none; 
}

.menu > li {
  margin: 0 1rem;
  overflow: hidden;
}
.menu a{
  color: white;
}

.menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu-toggle {
  display: none;
}
.icon {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: #fff;
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu-button::before {
  content: '';
  margin-top: -8px;
}

.menu-button::after {
  content: '';
  margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}

@media (max-width: 750px) {
  .menu-button-container {
    display: flex;

  }
  .menu {
    z-index: 10;
    position: absolute;
    top: 0;
    margin-top: 50px;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  #menu-toggle ~ .menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  #menu-toggle:checked ~ .menu li {
    border: 2px solid #000000;
    height: 2.5em;
    padding: 0.5em;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .menu > li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
    color: white;
    background-color: #0038a8;
  }
  .menu > li:not(:last-child) {
    border-bottom: 1px solid #000000;
  }
}

  @media screen and (max-width: 1000px) {
    .side{
        max-height: auto;
        max-width: 45%;
      }
      .logo{
        width: 15%;
        height: auto;
      }
      .grond{
        max-width: 60%;
        max-height: auto;
      }
    }