<style?
  body {
    height: 2000px; /* voorbeeld inhoudsduur scroll */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 2rem;
  }

  /* Stijl van de terug-naar-boven knop */
  #backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    display: none; /* verbergen tot scrollen */
    z-index: 1000;
    transition: background-color 0.3s ease;
    text-decoration: none;
  }

  #backToTop:hover {
    background: rgba(0, 0, 0, 0.8);
  }
</style>    


