@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap");
.dm-serif-display-regular {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-style: normal;
}

.dm-serif-display-regular-italic {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-style: italic;
}

.eb-garamond {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  overflow: hidden;
  position: relative;
  font-size: 14px;
  color: white;
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
main header {
  padding: 1rem;
  background-color: #191919;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
main header > * {
  pointer-events: all;
}
main header #searchForm {
  display: flex;
  gap: 1rem;
  color: inherit;
}
main header #searchForm input {
  width: 35ch;
  height: 1.5rem;
  background-color: #191919;
  border: none;
  border-bottom: 2px solid white;
  color: inherit;
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 1rem;
}
main header #searchForm input:focus {
  outline: none;
  caret-color: white;
  caret-shape: underscore;
}
main header h1 {
  color: white;
  font-size: 2rem;
  margin: 0rem;
  margin-left: 1rem;
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-style: normal;
}

canvas {
  display: block;
  touch-action: none;
}

#overlay {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  pointer-events: none;
}
#overlay ul {
  position: absolute;
  top: 250px;
  left: 140px;
  border-radius: 10px;
  background-color: #191919;
  color: white;
  list-style: none;
  padding: 0;
  overflow: hidden;
  z-index: -1000;
  opacity: 0;
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}
#overlay ul li {
  padding: 1em;
  pointer-events: all;
  cursor: default;
}
#overlay ul li:not(:last-child) {
  border-bottom: 1px solid white;
}
#overlay ul li.functional:hover {
  cursor: pointer;
  background-color: rgba(160, 160, 160, 0.2);
}
#overlay ul.active {
  z-index: 1000;
  opacity: 1;
}

/*# sourceMappingURL=main.css.map */
