main {
	background-color:rgb(71, 71, 71);
}
#title {
	font-size: 2.5em;
	font-family: 'Playfair Display SC';
	font-weight: normal;
	text-shadow: -2px 2px #000;
	display: flex;
	justify-content: center;
	background-image: linear-gradient(rgb(20,20,20), rgb(71, 71, 71));
	@media all and (min-width: 0px) and (max-width: 850px) {
		padding-top: 60px;
	}
	@media all and (min-width: 850px) {
		padding-top: 0px;
	}
}
#address {
	font-size: 1.2em;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	p {
		text-align: center;
		@media all and (min-width: 0px) and (max-width: 850px) {
			width: 80%;
		}
		@media all and (min-width: 850px) {
			width: 40%;
		}
	}
}
#map-row {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	width: 100vw;
	map {
		width: 40vw;
		min-width: 600px;
		height: 40vh;
		min-height: 400px;
	}
}