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

body {
  min-height: 100vh;
  background: #fbf7ef;
  color: #33302a;
  font-family: Georgia, "Times New Roman", serif;
}

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

.seek {
  display: flex;
  align-items: stretch;
  gap: 10px;
  width: min(600px, 94vw);
}

.seek__field {
  flex: 1;
  display: block;
}

.seek__field .awesomplete,
.seek__field .awesomplete input {
  display: block;
  width: 100%;
}

.lookup-input {
  width: 100%;
  height: 54px;
  padding: 0 18px;
  font-family: Georgia, serif;
  font-size: 19px;
  color: #33302a;
  background: #ffffff;
  border: 2px solid #d9cdb6;
  border-radius: 27px;
  outline: none;
}

.lookup-input:focus {
  border-color: #4a8a5b;
  box-shadow: 0 0 0 3px rgba(74, 138, 91, .15);
}

.seek__btn {
  min-width: 84px;
  height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 27px;
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: 18px;
  color: #fff;
  background: #4a8a5b;
}

.seek__btn:hover {
  background: #3d7a4d;
}

.foot-links {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 14px;
  text-align: center;
  font-size: 13px;
}

.foot-links a {
  color: #8a7f6a;
  text-decoration: none;
  margin: 0 12px;
}

.foot-links a:hover {
  color: #4a8a5b;
  text-decoration: underline;
}

/* Awesomplete dropdown, tuned to the warm theme */
.awesomplete > ul {
  border-radius: 12px;
  border: 1px solid #d9cdb6;
  box-shadow: 0 12px 30px rgba(51, 48, 42, .14);
  background: #fff;
  margin-top: 6px;
}

.awesomplete > ul > li {
  padding: 10px 18px;
  font-size: 16px;
  color: #4a463d;
}

.awesomplete > ul > li:hover,
.awesomplete > ul > li[aria-selected="true"] {
  background: #f0eadc;
  color: #33302a;
}

.awesomplete mark {
  background: transparent;
  color: #4a8a5b;
  font-weight: bold;
}
