@import url('https://fonts.googleapis.com/css2?family=Libertinus+Sans:ital,wght@0,400;0,700;1,400&display=swap');

html{
  width: 100%;
  height: 100%;
}
body{
  width: 100%;
  height: 100%;
  margin: 0;
  background: #ededed;
}
header{
  width: 100%;
  background: white;
  position: fixed;
  top: 0;
  box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.25);
}
nav{
  position: relative;
  margin: 0;
  bottom: 0px;
  display: flex;
  height: 40px;
  width: 100%;
}
#burger{
  display: none;
  position: relative;
  left: 5%;
  top: 37px;
  width: 25px;
  height: 25px;
  z-index: 30;
}
#backbutton{
  display: none;
  position: relative;
  left: 5%;
  top: 37px;
  width: 25px;
  height: 20px;
  z-index: 30;
}
#title{
  position: relative;
  text-align: center;
  display: flex;
  width: 100%;
  height: 120px;
  top: 0;
  left: 0;
  margin: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#title img{
  height: 70px;
  padding: 0;
  user-select: none;
}
#title p{
  margin: 0;
  font-family: "Libertinus Sans", sans-serif;
  font-size: 128%;
  font-optical-sizing: auto;
  font-weight: 100;
  letter-spacing: 2px;
  color: #737373;
  font-style: italic;
  user-select: none;
}
.navdrop{
  display: flex;
  background: #eca202;
  width: 20%;
  height: 100%;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-family: "Libertinus Sans", sans-serif;
  transition: all 0.3s ease;
  text-underline-offset: 5px;
  user-select: none;
  cursor: pointer;
}
.navdrop:hover{
  background: #737373;
}
.navdrop:hover p, .navdrop:hover u{
  color: white;
}
.navdrop p, .navdrop u{
  width: 100%;
  height: 50%;
  margin: 0;
}
#burgermenu{
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  z-index: 20;
  background: white;
  width: 0%;
  height: 100%;
  transition: width 200ms linear 0ms;
}
#mobilenavcontainer{
  position: static;
  display: none;
  width: 100%;
  height: 80%;
  top: 10%;
  bottom: 10%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Libertinus Sans", sans-serif;
}
#mobilenavcontainer h2{
  width: 100%;
  text-align: center;
  text-underline-offset: 5px;
  user-select: none;
  cursor: pointer;
}
@media(max-width: 600px){
  nav{
    display: none;
  }
  #title{
    height: 100px;
  }
  #title img{
    height: 40px;
  }
  #title p{
    font-size: 10px;
  }
  header{
    height: 100px;
    display: flex;
    flex-direction: row;
  }
  #burger{
    display: inline;
  }
}