body {
	font-family: 'Roboto', sans-serif;
	line-height: 1.6;
	margin: 0;
	padding: 0;
	color: #333;
	background-color: #f8f5f0;
}

.header {
	background-color: #1a1a1a;
	color: #fff;
	padding: 40px 20px;
	text-align: center;
}

.header h1 {
	margin: 0;
	font-family: 'Playfair Display', serif;
	font-size: 3em;
	font-weight: 700;
}

.address {
	font-size: 1.2em;
	margin-top: 10px;
	font-style: italic;
}

.content {
	padding: 40px 20px;
	max-width: 800px;
	margin: auto;
	text-align: center;
	font-size: 1.1em;
}

.menu-links {
	margin-top: 30px;
}

.menu-link {
	display: block;
	margin: 15px auto;
	padding: 12px;
	width: 220px;
	background-color: #333;
	color: white;
	text-decoration: none;
	border-radius: 0;
	font-family: 'Playfair Display', serif;
	font-weight: 400;
	transition: background-color 0.3s, color 0.3s;
	border: 1px solid #333;
}

.menu-link:hover {
	background-color: #fff;
	color: #333;
}

.main-course {
	background-color: #fff;
	color: #333;
}

.main-course:hover {
	background-color: #333;
	color: #fff;
}

.footer {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	text-align: center;
}