*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  background: #0b0b0d;
  color: #e6e6e6;
  font-family: "SF Mono", "JetBrains Mono", Menlo, Consolas, monospace;
}

.wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
}

.bar {
  display: flex;
  width: min(540px, 92vw);
  border: 1px solid #2a2a30;
  border-radius: 4px;
  background: #141418;
  overflow: hidden;
}

#term {
  flex: 1;
  height: 50px;
  padding: 0 16px;
  border: 0;
  background: transparent;
  color: #f4f4f4;
  font-family: inherit;
  font-size: 17px;
  letter-spacing: .01em;
  outline: none;
}

#term::placeholder {
  color: #5a5a63;
}

#b {
  width: 52px;
  border: 0;
  border-left: 1px solid #2a2a30;
  background: transparent;
  color: #f5a623;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

#b:hover {
  background: #1c1c22;
}

.fine-print {
  position: fixed;
  left: 16px;
  bottom: 14px;
  font-size: 11px;
  letter-spacing: .04em;
}

.fine-print a {
  color: #6b6b74;
  text-decoration: none;
  margin-right: 14px;
  text-transform: lowercase;
}

.fine-print a:hover {
  color: #f5a623;
}

/* kraaden autocompleter dropdown, dark override */
.autocomplete {
  background: #141418;
  border: 1px solid #2a2a30;
  color: #d4d4d8;
  font-family: "SF Mono", Menlo, Consolas, monospace;
  font-size: 14px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .6);
}

.autocomplete > div {
  padding: 9px 16px;
  border-bottom: 1px solid #1e1e24;
}

.autocomplete > div:hover,
.autocomplete > div.selected {
  background: #1f1f26;
  color: #f5a623;
}
