#menu {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 5;
  font-size: 1rem;
  background: #121212;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: bold;
}
#menu .home-link {
  display: none;
}
#menu .menubar-logo {
  height: 2rem;
}
#menu a {
  color: #c9c9c9;
  text-decoration: none;
}
#menu a:visited {
  color: #c9c9c9;
  text-decoration: none;
}
#menu #my-account {
  margin-left: auto;
}
#menu #close-menu {
  width: 1.5rem;
  height: 1.5rem;
  margin-bottom: 2rem;
  cursor: pointer;
  display: none;
}
@media screen and (max-width: 800px) {
  #menu #close-menu {
    display: initial;
  }
}
@media screen and (max-width: 800px) {
  #menu {
    display: none;
    position: fixed;
    top: 0.5rem;
    right: 0.5rem;
    left: unset;
    flex-direction: column;
    border: 2px solid #1fc594;
    border-radius: 1rem;
    max-width: 50%;
    align-items: flex-end;
  }
  #menu .home-link {
    display: initial;
  }
  #menu .menubar-logo {
    display: none;
  }
  #menu.visible {
    display: flex;
  }
}

#hamburger-icon {
  position: fixed;
  top: 0;
  right: 0;
  height: 2rem;
  width: 2rem;
  padding: 1rem;
  display: none;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  #hamburger-icon {
    display: initial;
  }
}

.paper {
  padding: 1.5rem;
  background: #1e1e1e;
  display: flex;
  flex-direction: column;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  background: #121212;
  /* font-family: "Jost", sans-serif; */
  /* font-optical-sizing: auto; */
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  color: #c9c9c9;
}