.footercontainer {
    position:sticky;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-items: baseline;
    height: 10vw;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--header-bg);
    /* border-radius: 90% 10% 100% 0% / 2% 100% 0% 98% ; */
    box-shadow: var(--box-shadow);
    /* background: linear-gradient(rgba(255,255,255,.5), rgba(255,255,255,.5)), url(../images/footer.jpg); */
    
    /*clip-path: polygon(0% 0%, 100% 64.5%, 0% 100%);*/
  }

  .footercontent {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-shadow: var(--text-schadow);
    font-size: var(--font-size);
    font-family: var(--header-font);
    text-shadow: var(--text-schadow);
    color:var(--text-header);
    /*clip-path: polygon(0% 0%, 100% 64.5%, 0% 100%);*/

  }

  .pijl-omhoog {
    font-size: var(--font-size);
    color: var(--black);
    text-shadow: var(--text-schadow);
    cursor: pointer;
  }


  .back-to-top {
    position: fixed;
    font-size: var(--font-size);
    bottom: 20px;
    right: 20px;
    background-color: var(--black);
    color: var(--white);
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    display: none;
  }
  .footercontent a {
    font-size: var(--font-size);
    margin: 0 10px;
    color: var(--text-header);
    text-decoration: none;
  }
  .footercontent a:hover {
    text-decoration: underline;
  }

  .address {
    font-size: var(--font-size);
    display: flex;
    color: var(--text-header);
    font-weight: 600;
    align-items: auto;
    justify-content: space-around;
  }

  @media screen and (max-width: 768px) {
    .footercontent {
        font-size: var(--font-size-small);
    }
    .footercontainer {
        height: 36vw;
        font-size: var(--font-size);
    }
    .address {
        font-size: var(--font-size-small);
    }
    .footercontent a {
        font-size: var(--font-size-small);
    }
    #backToTop {
        display: block;
    }
    .pijl-omhoog {
        font-size: var(--font-size-small);
    }
}