
body {
	height: 100%;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #a0bff0;
}
header {
	width: 100%;
	background-size: cover;
	background-position: center;
}
.navbar-nav .nav-link {
	font-weight: bold;
	font-size: 1.5em;
}
.carousel-item img {
	width: 100%;
	height: 500px;
	object-fit: cover;
}
.carousel-caption p {
	color: white;
	text-shadow: 2px 2px 4px black;
	padding: 5px;
	background-color: rgba(0,0,0,0.5);
}
.carousel-caption h5 {
	text-shadow: 2px 2px 4px black;
}
.map {
	width: 80%;
	height: 400px;
	border: 1px solid #000;
	margin: 0 auto;
}
h1 {
	margin: 0 auto;
	padding: 40px;
	color: #D3AF37;
	font-family: 'Anton', sans-serif;
	font-weight: 400;
	font-style: normal;
	text-shadow: 1px 1px 2px black;
}
.welcome p {
	font-size: 1.5em;
	margin: 0 auto;
	width: 75%;
}

.menu-item {
	padding: 10px;
	margin-bottom: 10px;
	display: flex;
	justify-content: space-between;
	align-items: left;
}
.menu-item img {
	width: 350px;
	height: 200px;
	object-fit: cover;
	margin-right: 10%;
}
.menu-item p {
	margin: 20px 0;
	font-size: 1.2em;
}
.cart {
	margin-top: 20px;
}
.cart-total {
	font-weight: bold;
}
span {
	font-weight: bold;
}

.checkout-container {
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	max-width: 600px;
	margin: 0 auto;
}
.checkout-container h2 {
	color: #343a40;
	margin-bottom: 20px;
}
.checkout-container pre {
	padding: 10px;
	border-radius: 5px;
	font-size: 16px;
}
.checkout-container .form-group {
	margin-bottom: 15px;
}
.checkout-container .form-control {
	border-radius: 5px;
}

.feedback-button {
	background-color: #D3AF37;
	border-color: black;
	color: black;
	padding: 15px 30px;
	font-size: 18px;
}
.feedback-button:hover {
	background-color: #f1e3a4;
	border-color: black;
}
.modal-content {
	background-color: #a0bff0;
	border-radius: 10px;
}
.modal-header {
	height: 100%;
	color: black;
	border-bottom: 1px solid #f1e3a4;
}

@media (max-width: 800px) {
	.menu-item {
		flex-direction: column;
		align-items: center;
	}
	.menu-item img {
		margin-right: 0;
		margin-bottom: 10px;
	}
	.menu-item div {
		text-align: center;
	}
}