body {
	background: #151515;
	color: navajowhite;
	max-width: 70%;
	margin: auto;
	padding: 0 16px;
	font-family: sans-serif;
	overflow-wrap: break-word;
	word-break: break-word;
}

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;
}


.example-block {
    display: flex;
    justify-content: center; /* Center the block horizontally */
}

.example-inner {
    text-align: left; /* Keep the text inside left-aligned */
}


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

.search {
}

.search-wrapper {
}

.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: 0px;
	right: 0px; 
	width: 10%;
	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;
}

