html {
	background-color: black;
}

body {
	background-color: black;
	color: white;
	margin: auto;
	padding: 10px;
	font-size: 20px;
	line-height: 1.2;
}

a {
	color: #ebd780;
}

em, i {
	font-style: italic;
}

strong, b {
	font-weight: 700;
}

a:hover {
	text-decoration: none;
	color: #ebd780;
}

dl {
	max-width: 650px;
	margin: auto;
}

dt {
	margin-bottom: 1em;
	margin-top: 1em;
	font-weight: 700;
}

dd {
	margin-bottom: 2em;
	padding-left: 2em;
}

h1 {
	font-size: 25px;
	font-weight: bold;
}

p, h1, h2, h3, h4 {
	margin-bottom: 1em;
}

td, th {
	vertical-align: middle;
	padding: 8px;
	border: 2px solid white;
}

.ingredients-table {
	width: 60%;
	min-width: 300px;
	margin: 0 auto 3em;
}

.ingredients-table th {
	font-size: 25px;
}

.banner {
	width: 100%;
}

.menu {
	text-align: center;
	font-size: 25px;
	font-weight: 700;
	margin-bottom: 1em;
}

.menu a {
	display: block;
	margin-bottom: 0.6em;
}

@media screen and (min-width: 800px) {
	body {
		width: 55%;
		min-width: 720px;
		border: 3px solid #FFFFFF;
		margin: 10px auto;
	}

	h1 {
		font-size: 32px;
	}

	.menu a {
		margin-right: 2em;
		position: relative;
		display: inline;
	}

	.menu a:after {
		content: '•';
		position: absolute;
		color: white;
		right: -1.3em;
	}

	.menu a:last-child:after {
		display: none;
	}
}

.center {
	margin: auto;
}
.center-text {
	text-align: center;
}

.img-hover {
	border: 1px solid #ddd; /* Gray border */
	border-radius: 4px;  /* Rounded border */
	padding: 5px; /* Some padding */
	width: 150px; /* Set a small width */
	display: inline-block;
	margin-bottom: 1em;
}

.img-hover img {
	max-width: 100%;
}

/* Add a hover effect (blue shadow) */
.img-hover:hover {
	box-shadow: 0 0 2px 1px rgba(0, 140, 186, 0.5);
}

.prices td {
	text-align: center;
}

.prices td:first-child {
	text-align: left;
}
