body {
        margin: 0;
        padding-top: 0px;
        background-color: rgb(17, 80, 65);
        background-repeat: no-repeat;
      }
      #overskrift {
        display: flex;
        align-items: center;
        gap: 20px;
        color: white;
        background-color: rgb(17, 80, 65);
        margin-top: 0%;
        width: 100%;
        position: relative;
        z-index: 100;
      }
      h3 {
        margin-left: 20px;
      }
 
       .dropdownButton {
        font-family: 'Times New Roman', Times, serif;
        background-color: whitesmoke;
        color: rgb(17, 80, 65);
        padding: 10px 15px;
        border: 1px rgb(17, 80, 65);
        cursor: pointer;
      }
 
      .dropdown {
        position: relative;
      }

      .dropdown a {
        display: block;
        color: black;
        text-decoration: none;
        padding: 10px 15px;
      }
      .dropdown .content {
        display: none;
        position: absolute;
        background-color: whitesmoke;
        min-width: 100px;
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.801);
        z-index: 101;
      }
      .dropdown:hover .content {
        display: block;
      }
      .dropdown a:hover {
        background-color: rgba(210, 210, 210, 0.676);
      }

