*{
	
}

body {
	background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url(./pictures/brickwall.jpg);
 	font-family: "segoe ui", helvetica;
 	margin: 0;
}

.grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-template-rows: 150px 220px 75px 450px;
	grid-template-areas: 
	"linklogo title title title"
	"menu menu menu menu"
	"des des des des"
	"googlemap googlemap googlemap googlemap"
}

.linklogo {
	grid-area: linklogo;
	align-self: center;
	padding: 5px;
}

.menu {
	grid-area: menu;
	background: #ac3939;
	align-self: center;
	justify-content: start;
	display: grid;
}

.main-nav{
	list-style: none;
}

.main-nav li{
	margin: 0 0 10px 0 ;
}

.main-nav li a{
	text-decoration: none;
	padding: 5px 0px;
	font-weight: 600;
	font-family: "segoe ui", helvetica;
	font-size: 20px;
	color: white;
}


.title {
	grid-area: title;
	display: grid;
	justify-content: center;
	align-self: center;
	color: white;
}

.des {
	display: grid;
	grid-area: des;
	justify-content: center;
	color: white;
	font-weight: 600;
	font-size: 18px;

}

.googlemap {
	grid-area: googlemap;
	display: grid;
	justify-content: center;
	max-width: 100%;
	height: auto;
}

@media screen and (min-width: 769px){

	.grid{
		display: grid;
		grid-template-columns:  1fr 1fr 1fr 1fr;
		grid-template-rows: 100px 200px 75px 400px ;
		grid-template-areas: 
		"linklogo menu menu menu"
		" . title title ."
		" . des des ."
		" . googlemap googlemap ."
	}

	.menu {
		grid-area: menu;
		display: grid;
		background: none;
		justify-content: flex-end;

	}

	.main-nav {
		margin-top: 20px
	}

	.main-nav li {
		display: inline-block;
		border-left: 1px solid white;
	}

	.main-nav li a{ 
		padding: 5px 25px;
		font-weight: 600;
		font-family: "segoe ui", helvetica;
		font-size: 20px;
		color: white;
	}

	.main-nav li a:hover {
		border: 3px solid white;
	}
}