nav {
  position: fixed;
  display: flex;
  height: 64px;
  width: 100%;
  justify-content: center;
  box-shadow: 0 0px 10px var(--shadow-color);
  padding: 10px;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
} nav .bar {
  display: flex;
  gap: 10px;
  margin-left: 10px;
  margin-right: 10px;
  box-sizing: border-box;
  width: var(--content-width);
  justify-content: space-between;
  align-items: center;
} nav .bar .title-card {
  all: unset;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: auto;
  margin-left: 20px;
  text-align: center;
  justify-content: center;
  align-items: start;
  color: var(--primary-color);
} nav .bar .title-card:hover {
  cursor: pointer;

} nav .bar .title-card h2 {
  all: unset;
  font-size: var(--title2-text);
  color: inherit;
  font-weight: 500;
  text-align: start;
  line-height: 0.9;
  font-family: 'Courier New', Courier, monospace;

  user-select:           none;
  -webkit-touch-callout: none;
  -webkit-user-select:   none;
  -khtml-user-select:    none;
  -moz-user-select:      none;
  -ms-user-select:       none;
} nav .bar .buttons {
  display: flex;
  gap: 10px;
  height: 75%;
  width: auto;
  justify-content: space-between;
  align-items: center;
}


@media (max-width: 600px) {
  nav {
    bottom: 0;
    box-shadow: 0 0px 10px var(--shadow-color);
  } nav .bar {
    display: flex;
    gap: 4px;
  }
}
