body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica,
    Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  font-size: 100%;
  color: #3e3e4a;
  background-color: #fefeff;
  line-height: 1.2rem;
}

* {
  box-sizing: border-box;
}

body,
main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

main {
  min-width: 80%;
}
@media screen and (min-width: 800px) {
  main {
    min-width: unset;
    max-width: 800px;
  }
}

.card {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 5px 11px rgba(50, 50, 93, 0.08), 0 2px 5px rgba(0, 0, 0, 0.06);
  transition: box-shadow ease 150ms;
  background-color: #fefeff;
  margin-bottom: 1rem;
}
.card.hoverable:hover {
  box-shadow: 0 10px 23px rgba(50, 50, 93, 0.1), 0 3px 10px rgba(0, 0, 0, 0.07);
}

.card.full-width {
  width: 100%;
}

.recipe-tags {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
.recipe-tags .tag {
  border-radius: 0.2rem;
  background-color: #eeeefa;
  height: 1.5rem;
  padding: 0 0.5rem;
  margin-right: 0.25rem;
}
