:root {
  /* Theme colors */
  --body-bg: #fff;
  --body-fg: :#302a2a;
  --menu-bg: #302a2a;
  --menu-fg: white;
  --menu-visited: #6ab5eb;
  --recipe-bg: #fff9f0;
  --recipe-hdr: #1505a3;
  --recipe-text:#302a2a;
  --recipe-red:#df3a25;
  --notice-font:"Hedvig Letters Serif", serif;
  --header-font:"Junge", cursive;
  --body-font:"Patrick Hand", cursive;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

body {
  background-color: var(--body-bg);
  color: var(--body-fg);
  font-size: 1em;
  margin: 0;
}

#header {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 7px 10px;
  background-color: var(--menu-bg);
  color: var(--menu-fg);
}
@media screen and (min-width: 966px) {
  #header {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}

#head-head a {
  text-decoration: none;
  color: white;
}

.header-body {
  display: none;
}
@media screen and (min-width: 966px) {
  .header-body {
    display: block;
  }
}

.menu-burger {
  font-size: 27px;
  background-color: var(--menu-bg);
  color: var(--menu-fg);
  border: none;
  width: 40px;
}
@media screen and (min-width: 966px) {
  .menu-burger {
    display: none;
  }
}

.menu-list {
  margin: 0;
  padding: 0 0 10px 0;
  font-size: 22px;
}
@media screen and (min-width: 966px) {
  .menu-list {
    display: flex;
    flex: 0 0 70%;
    max-height: 35px;
  }
}

.menu-list li {
  border-top: 1px solid var(--menu-fg);
  border-bottom: 1px solid var(--menu-fg);
  list-style: none;
}
@media screen and (min-width: 966px) {
  .menu-list li {
    margin: 0 5px;
  }
}

.menu-list li a {
  color: var(--menu-fg);
  text-decoration: none;
}

.menu-list li a:visited {
  color: var(--menu-visited);
}

.menu-list li:first-child {
  border-top: 2px solid var(--menu-fg);
}
@media screen and (min-width: 966px) {
  .menu-list li:first-child {
    border-bottom: 1px solid var(--menu-fg);
  }
}

.menu-list li:last-child {
  border-bottom: 2px solid var(--menu-fg);
}
@media screen and (min-width: 966px) {
  .menu-list li:last-child {
    border-bottom: 1px solid var(--menu-fg);
  }
}

#top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-hr {
  background-color: var(--menu-fg);
  margin: 0;
}

.search-form {
  /* display: flex; */
}
@media screen and (min-width: 966px) {
  .search-form {
    flex: 0 0 70%;
  }
}

.container {
  padding: 5px;
  margin-top: 15px;
  color: var(--recipe-text);
}
.container a {
  color: var(--recipe-red);
}

.action-button {
  background-color: #f78a36;
}

.inquiry-button {
  background-color: #7232ad;
}

.search-button {
  margin-left: 20px;
}

.arrow-button {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  padding: 0;
  background-color: #bbd8ed;
}

.add-button {
  background-color: #1ee66a;
}

/** Forms */
.lineForm {
  border-bottom: 2px solid #444;
  padding-bottom: 10px;
}

.item-inputs {
  display: flex;
  flex-direction: column;
}

.input-row {
  display: flex;
  flex-direction: column;
}

/*
Recipes
*/
.recipes {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.recipe {
  background-color: var(--recipe-bg);
  filter: drop-shadow(0 -2px 2px #252525);
  padding: 5px 10px;
  margin: 0 20px;
}
.recipe h2 {
  margin-top: 10px;
  text-align: center;
  color: var(--recipe-hdr);
  font-family: var(--header-font);
  filter: drop-shadow(0 -1px 1px #252525);
}
.recipe p {
  font-size: 18px;
  font-family: var(--body-font);
}

.featured-recipes {
  margin: 20px 0;
  text-align: center;
  font-family: var(--header-font);
  filter: drop-shadow(0 -1px 1px #252525);
}

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