body {
  color: #FFE100;
	background-color: #5C2216;
  font-family: "Crimson Pro", serif;
  font-size: 1.3em;
  text-shadow: .08em .08em .02em #5C2216;
  text-align: center;
}
.section {
  background-color: #662C20;
  background-image: radial-gradient(#753B2F, transparent 70%);
  border: .1em solid #FFE100;
  margin:3%;
  padding: 3%;
  transition: box-shadow 0.2s;
}
.section:hover {
  box-shadow: 0em 0em .5em #FFFFBB;
}
.header {
  font-family: "Bitter", serif;
	text-shadow: .05em .05em .02em #5C2216;
}
.list {
  text-align: start;
}
#ingredients {
  width: fit-content;
	margin: auto;
}
h1 {
  font-size: 3.3em;
}
h2 {
  font-size: 1.9em;
}
h3 {
  font-size: 1.6em;
}
hr {
  border: .15em solid #FFE100;
  border-radius: .4em;
  margin: 1%;
  box-shadow: .18em .18em .03em #5C2216;
}
img {
  max-width: 90%;
  border: .5em solid #FFE100;
  border-radius: 3.5em;
  box-shadow: .2em .2em .05em #5C2216;
  transition: transform 0.3s ease-in-out;
}
img:hover {
  cursor: zoom-in;
}
img:active {
  transform: scale(1.3);
  cursor: auto;
}
ol li {
	padding: 0% .2em;
}
a:link {
  color: #FFFFE0;
}
a:visited {
  color: orange;
}
a:hover {
  font-weight: 600;
}
a:active {
  color: #FFE100;
}