*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
    --ff-main: "poppins", serif;
    --ff-accent: "anton", serif;
  }

  body {
    width: 100%;
    min-height: 100dvh;
    font-family: var(--ff-main);
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    background-color: #F2F7F9;
    margin: 0;
  }

  .header {
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-family: var(--ff-main);
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    background-color: #ffffff;
    margin: 0;
    position: sticky;
  }

  .logo-container {
    align-items: flex-start;
    padding: 1rem;
  }

  .logo {
    width: 221px;
    height: 100px;
  }

  .button-container {
    align-items: flex-end;
    padding: 1rem;
  }

  .menuknop {
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background-color: #006291;
    text-align: center;
    font-family: var(--ff-main);
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
  }

  .footer {
    width: 100%;
    height: auto;
    background-color: #ffffff;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    padding: 3rem;
  }

  .footer-container {
    display: flex;
    flex-direction: column;
  }

  .footer-container>img {
    margin-bottom: 2rem;
  }

  .motto {
    font-family: var(--ff-accent);
    color: #006291;
    font-size: 36px;
    font-weight: 400;
    margin: 0;
  }
  
  .footer-title {
    font-family: var(--ff-accent);
    font-size: 20px;
    font-weight: 400;
    color: #006291;    
    margin-top: 2rem;
    margin-bottom: 0;
  }

  .footer-list {
    list-style: none;
    font-family: var(--ff-main);
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    padding: 0;
  }

  .fa-brands {
    color: #006291;
  }