body {
  background: #151515;
  color: navajowhite;
  max-width: 850px;
  margin: auto;
  padding: 0 16px;
  font-family: sans-serif;
}

a {
	color: gold ;
	text-decoration: none ;
}

a:visited {
	color: darkgoldenrod ;
}

a:hover {
	color: beige ;
	text-decoration: underline;
}

h1 {
	border-style: solid ;
	border-width: 0px 0px 2px 0px ;
	text-align: center ;
}

h2 {
	color: tomato ;
	text-align: center ;
}

h3 {
	margin: 0.0rem;
}

input#search {
  all: unset;
  background: #222;
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: 5px;
  width: 100%;
}

.search {
  width: 400px;
  max-width: 85vw;
  position: relative;
  margin: 0.5rem auto 1.2rem;
  display: flex;
}

.search-wrapper {
	display : flex;
	flex-direction: column;
	gap: .25rem;
}

.recipe-container {
	display:grid;
    grid-template-columns: 1fr;
}

.recipe {
	padding: 1.0rem;
}

.recipe > .name {
	font-size: 2.0rem;
}

.recipe > .ingredients {
	font-size: 1.2rem;
	margin-left: 1.2rem
}

.hide {
	display: none;
}

.floating-card {
  bottom: 20px;
  right: 20px; 
  width: 150px;
  padding: 15px;
  background-color: #151515;
  text-align: center;
  position: fixed;
  z-index: 1000;
}

footer {
  text-align: center;
  border-style: solid;
  border-width: 2px 0px 0px 0px;
  padding: 1em;
}

