/* Reset styles for all elements */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Apply styles to the body element */
body {
	background-image: url('images/background.jpg');
	font-family: Arial, sans-serif;
	font-size: 20px;
	color: #333;
	min-width: 685px;
	width: auto;
	background-size: 100%;
}

/* Apply styles to the header element */
#header {
	position: relative;
	height: 200px;
	background-color: rgba(255, 255, 255, 0.5);
	text-align: center;
}

#logo-space {
	height: 32px;
}

/* Apply styles to the logo element */
#logo {
	display: flex;
	justify-content: center;
	align-items: center;
}

#logo img {
	height: 80px;
	width: auto;
	float: left;
}

#logo h1 {
	display: inline-block;
	margin-left: 20px;
	margin-top: 20px;
	font-size: 2em;
	font-weight: bold;
	color: #007474;
}

#navigation {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 55px;
	background-color: #c00;
}

#navigation ul {
	list-style-type: none;
	display: inline-block;
	margin: 0;
	padding: 0;
}

#navigation li {
	display: inline-block;
	margin-right: 20px;
	font-size: 20px;
}

#navigation li:last-child {
	margin-right: 0;
}

#navigation a {
	display: block;
	padding: 17px;
	color: white;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold;
}

#navigation a:hover {
	background-color: white;
	color: #c00;
}

#content-container {
	background-color: rgba(255, 255, 255, 0.5);
	height: 100%;
	max-width: 900px;
	top: 60px;
	padding: 20px;
	margin: 0 auto;
	position: relative;
}

.recipeButton {
	display: block;
	margin: auto;
	font-size: 1.5em;
	padding: 5px;
}

.recipeMenu {
	display: block;
	margin: auto;
	font-size: 1em;
	padding: 5px;
}

.recipeContainer {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

#imagePreview {
	max-width: 100%;
	height: auto;
	margin-bottom: 20px;
}

#imageResultsList {
	font-size: 1.2em;
	background-color: rgba(255, 255, 255, 0.5);
	padding: 20px;
	margin: 4px;
}

.red-text {
	color: red;
	font-weight: bold;
}

.no-bullets {
	list-style-type: none;
}

.menuStyle {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.menuStyleLabel {
	margin-right: 10px;
}

.page-body {
	width: 100%;
	margin: 20px auto 0;
	padding: 20px;
	background-color: rgba(255, 255, 255, 0.5);
}

br.half-height {
	line-height: 0.3;
	content: " ";
	display: block;
	margin-top: 0.3em;
}

table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.7em;
}

.left {
	text-align: left;
}

.right {
	text-align: right;
}

ul {
	padding-left: 20px;
}

ol {
	padding-left: 20px;
}

label {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
}

.social-media a {
	margin-right: 15px;
	font-size: 24px;
	color: #333;
	text-decoration: none;
}

.social-media a:hover {
	color: LightBlue;
}

.collapse {
	display: none;
}

.collapse.show {
	display: block;
}

.btn {
	font-weight: bold;
	padding: 0.3rem 0.75rem;
	margin-top: 1.3rem;
	margin-bottom: 0.75rem;
	font-size: 1.4em;
	border-radius: 0.25rem;
}

.btn-primary {
	color: #007474;
}

iframe {
	width: 100%;
	height: 1100px;
	border: none;
}

.northern-nevada-discount-iframe {
	height: 1570px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
	width: 100%;
	padding: 10px;
	margin-bottom: 15px;
	border: none;
	border-radius: 3px;
	resize: vertical;
	background-color: #e6e6e6;
}

input[type="submit"] {
	background-color: #4CAF50;
	color: white;
	border: none;
	border-radius: 3px;
	padding: 10px 20px;
	cursor: pointer;
}