

/*

Modify the lesebasen file first, this is just a copy!

*/


/* footer */
#footer{
    position: fixed;
    bottom: 0px;
    font-size: medium;
    background-color: var(--div-main-color);
    width: 100%;
    z-index: 4;
    border-bottom: 1px solid black;
    max-height: 1.5em;
    padding: 3px;
    padding-left: 1%;
  }
  
  #footerInner{
    display: flex;
    width: 70%;
    height: 100%;
    justify-content: space-between;
  }
  
  .footerLink{
    text-decoration: none;
    color: var(--link-text-color);
    opacity: 0.5;
  }
  
  
/* HEADER */

#glupusHeader{
  width: 100%;
  height: 2em;
  background-color: var(--panel-color);
  color: var(--color);
  top: 0px;
  padding-inline: 1em;
  display: flex;
  align-items: center;
  box-shadow: 0px 0px 10px 0px var(--panel-color);
  box-sizing: border-box;
}

#glupusHeaderLogo{
  background-image: url('../img/glupuslogo.svg');
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

#glupusHeaderLogo:hover{
  cursor: pointer;
}

#glupusAnchor{
  height: 75%;
  aspect-ratio: 459/162;
  margin-inline: 1em;
}

#headerUserInfoAvatar{
  height: 75%;
  aspect-ratio: 1/1;
  background-image: url('../img/default_avatar.svg');
  background-repeat: no-repeat;
  margin-top: auto;
  margin-bottom: auto;
}

#headerUserInfoName{
  margin-top: auto;
  margin-bottom: auto;
}

#loginOrSignup{
  position: absolute;
  padding-right: inherit;
  right: 0px;
}

#headerUserInfo{
  margin-inline: auto;
  display: flex;
  height: 100%;
  justify-content: center;
}

#darkModeToggle{
  
  cursor: pointer;

}