* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }


  
  
  /* Sikre at baggrunden er full screen  */
  #Background {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }
  
  #Background video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: 0;
  }
  
  /* Overlay content container, ligger menu og logo henover video */
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
  }
  
 /* Hide the native checkbox */
#burger-toggle {
    display: none;
  }
  
  /* Style the burger icon */
  .burger-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 80px;
    height: 100px;
    cursor: pointer;
    z-index: 3;
  }
  
  .burger-icon img {
    width: 100%;
    height: 100%;
    display: block;
  }
  
  /* Dropdown content hidden by default */
  .dropdown-content {
    position: absolute;
    top: 100px; /* below the burger icon */
    left: 30px;
    background-color: rgba(255, 255, 255, 0.95);
    min-width: 160px;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    display: none;
    z-index: 3;
  }
  
  /* Show dropdown-content when checkbox is checked */
  #burger-toggle:checked + .burger-icon + .dropdown-content {
    display: block;
  }
  
  /* Dropdown links style */
  .dropdown-content a {
    color: rgb(0, 0, 0);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-family: Montserrat;
  }
  
  .dropdown-content a:hover {
    background-color: #bddac2;
  }
  
  /* Center logo in the screen */
  .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 300px; /* adjust as needed */
    width: 80%;
  }

  footer{
    display: flex;
    background-color:#bddac2;
    color: white;
    justify-content: space-evenly;
    padding: 2rem;
    position: relative;
    bottom: 0;
    width: 100%;
    min-height: 200px;
    

}

footer a{
    color: white;
    text-decoration: none;
    font-family: montserrat;
  
}

footer div {
    flex: 1;
    margin: 0 10px;
    text-align: center;
}

footer h2 {
    margin-bottom: 10px;
    font-family: Montserrat;
    text-align: center;
}

footer p {
  margin-top: 2.2rem;
    font-family: Montserrat;
    text-align: center;
}

footer img {
    max-width: 2rem;
}

footer form {
    display: flex;
    flex-direction: column;
}

footer form input {
    margin-bottom: 10px;
    font-family: Montserrat;

  
}

footer form button {
    background-color: White;
    color: black;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 0.5rem;
    font-family: Montserrat;
}


@media (max-width: 768px) {
 

    footer{
        flex-direction: column;
        align-items: center;
        padding: 3rem;
    
    }

    footer div {
        margin:2rem 0;
        text-align: center;
    }
}