body {
  margin: 0px;
  padding: 0px;
}
.toolbar {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 0px;
  left: 0px;
  right: 0px;
  background-color: rgba(0, 80, 255);
  height: 10%;
  z-index: 10001;
}
.toolbar a {
  height: 100%;
}
.home-icon {
  margin: 4px;
  height: 80%;
}
.hamburger {
  margin: 4px;
  height: 80%;
  cursor: pointer;
}
.menu {
  position: fixed;
  top: 10%;
  right: 0px;
  height: 90%;
  z-index: 10000;
  transform: translateY(-100%);
  transition: transform 0.5s ease-in-out;
}
.menu.show {
  transform: translateY(0);
}
.menu-bg {
  height: 100%;
  z-index: 1000;
}
.menu-options {
  position: absolute;
  top: 18%;
  bottom: 0px;
  width: 100%;
  overflow-y: auto;
  scrollbar-width: thin;
  text-align: center;
}
.menu-option {
  display: block;
  font-family: "Times New Roman", "Times", "Serif";
  color: black;
  text-decoration: none;
  font-size: 4vh;
  padding: 10%;
}
.menu-desc {
  font-size: 3vh;
  margin-top: 0.75vh;
}
.main {
  position: absolute;
  top: 10%;
}
.hint {
  position: fixed;
  width: 100vw;
  max-height: 80vh;
  right: 0px;
}
