#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 10%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
  background: white;
}

#navbar.fade-in {
  opacity: 1;
}

#logo{
  height: 100%; 
  width: 20%;

  
}

#logo img {
  height: 100%; 
  width: auto; 
	z-index:20;
}
  #topmenu {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 70%;
    height: 100%;
  }
  
  #topmenu a {
    height: 50%;
    width: calc(100% / 5);
    border-radius: 20px;
    box-shadow: 8px 8px 24px 0px rgba(66, 68, 90, 1);
    display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
align-items: center;
align-content: center;
text-decoration: none;
color: black; 
  }

  #topmenu a:visited {
    text-decoration: none;
  }

  #burgermenu {
    display: none;
    position: fixed;
    bottom: 4em;
    right: 2em;
    width: 4em;
    height: 4em;
    border-radius: 50%;
    background-color: black;
    z-index: 999;
    opacity: 0;
    cursor: pointer;
    transition: opacity 0.5s ease-in-out;
  }

  .burgerline {
    width: 70%;
    height: 0.25em;
    margin: 0.25em;
    background: white;
    border-radius: 25px;
    z-index: 999;
  }

  @media (max-width: 767px) {
    
    #topmenu {
      display: none;
    }
 

  #logo{
    
    width: 40%;
    display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
align-items: center;
align-content: center;
  
  }

  #logo img {
    max-height: 100%; 
    width: auto; ; 
  }

  #burgermenu {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    opacity: 1;
  }

  .fade-in {
    opacity: 1;
  }
  }
