/* selector { property: value property: value } */
*, *::before, *::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  height: 100%;
  /* scrollbar */
  scrollbar-gutter: stable;
  overflow-y: hidden;
  overflow-x: hidden;
}
#tophead {
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 4px;
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -2.5px;
}
.heady {
  display: flex;
  justify-content: space-between;
  flex: 1;
  margin: 6px 6px 2px;
  width: 100%;
  position: fixed;
  background: #daded8;
  color: #4b4d39;
}
nav {
  display: flex;
  justify-content: center;
  padding: 0 6px;
  margin: 8px 0;
}
ul {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  gap: 14px;
}
li {
  list-style: none;
}
a {
  all: unset;
  cursor: pointer;
}
li a {
  /* color: black; */
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  letter-spacing: -0.4px;
}
li .label {
  text-decoration: underline;
}
#headyhr {
  padding: 8px;
  font-weight: 1000;
}
body {
    font: 400 1rem/1.6 "Arial", sans-serif;
    background: #daded8;
  }

  h1 {
    font-size: clamp(1.5 rem, 5vw, 4.8rem);  /* 1rem = 10px brain hack */
    line-height: 1.2;
    letter-spacing: -0.5px;
  }
@media (max-width: 768px) {
  #tophead {
  /* display: flex; */
  flex-wrap: wrap;
  flex-direction: column;
  /* justify-content: center; */
  /* text-align: center; */
  /* padding: 4px; */
  /* font-size: 2.5rem; */
  /* font-weight: 600; */
  /* letter-spacing: -2.5px; */
}
  .heady {
    flex-direction: column;
    flex: 1;
  /* display: flex; */
  /* justify-content: space-between; */
  margin: 6px 6px 2px;
  /* width: 100%; */
}
  ul {
    flex-direction: column;
    gap: 8px;
  /* display: flex; */
  /* justify-content: center; */
  /* align-items: center; */
}
}