* {
	margin: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Poiret One';
	font-color: #480617;
	background-color: #ffffff;
}

.grid-container {
	display: grid;
	grid-template-areas:
		'header'
		'navigation'
		'main'
		'footer';
 	gap: 10px;
 	padding: 10px;
}

.logo {
	grid-area: header;
}

.logo img {
	max-width: 70%;
	margin: auto;
}
	
.menu_bar {
	grid-area: navigation;
	width: 100%;
	Text-align: center;
}

.menu_bar ul {
	border-top: 1px solid #480617;
	border-bottom: 1px solid #480617;
	margin: auto;
	list-style: none;
	font-size: 36px;
	font-weight: 700;
}

.menu_bar li {
	display: inline-block;
	Padding: 10px;
	color: #480617;
}

.menu_bar a:link, a:visited, a:hover, a:active {
	text-decoration: none;
	color: #480617;
	background-color: #ffffff;
}

.content {
	grid-area: main;
	padding: 40px;
}

.content p {
	padding: 20px;
	font-size: 32px;
	font-weight: 700;
	line-height: 80px;
	color: #480617;
}

button {
	background-color: #ffffff;
	border: 1px solid #480617;
	border-radius: 8px;
	padding:20px;
	margin-top: 80px;
	margin-bottom: 80px;
	font-family: Poiret One;
	font-weight: 700;
	font-size: 36pt;
	color: #480617;
}

button a:link, a:visited, a:hover, a:active {
	text-decoration: none;
	background-color: #ffffff;
}

.footer {
	grid-area: footer;
	text-align: center;
	color: #480617;
	font-size: 20px;
	font-weight: 700;
	}