#navbar {
    display: grid;
    grid-template-columns: 80px auto 80px;
    height: 80px;
    width: 100%;

  }

  .usericon {
    max-width: 60px;
    max-height: 60px;

  }

  .hidden {
    display: none;
  }
  .visible {
    display:flex;
  }

  #layer {
    position: fixed;
    min-height: 100vh;
    min-width: 100vw;
    top: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.8);
  }

  #layertext {
    position: absolute;
    width: 80vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: aliceblue;
  }

  #acceptCookieButton {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .usermenuitem {
    /* max-width: 150px; */
    list-style-type: none;
    position: relative;
    color: black;
    margin-top: 4px;
    margin-bottom: 4px;
    /*border: 1px black solid;*/
  }

  #usermenucontainer {
    height: 80px;
  }

    #usermenucontent {
    position: relative;
    min-width: 150px;
    right: 75px;
    border-radius: 8px;
    padding: 5px;
    opacity: 1;
    background-color: aliceblue;
    }
  
  #usermenu {
    padding: 0px;
    margin-top:0px;
    margin-bottom: 0px;
  }
  #navbarcenter {
    justify-self: center;
    font-size: larger;
  }

  #navbarright img{
    position: absolute;
    right: 3px;
    max-width: 60px;
    max-height: 60px;

  }

  #navbarleft img{
    position: absolute;
    left: 3px;
    max-width: 60px;
    max-height: 60px;

  }  

#navbarimageleft {
  min-width: 60px;
  min-height: 60px;
}