* {

}

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;
 	color: white;
}

.grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr; 
	grid-template-rows: 150px 220px 150px 150px;
	grid-template-areas: 
	"linklogo title title title"
	"menu menu menu menu"
	"L183 L183 L183 L183"
	"mcat mcat mcat mcat"

}

.linklogo {
	grid-area: linklogo;
	align-self: center;
	padding: 5px;
}

.title {
	grid-area: title;
	display: grid;
	justify-content: center;
	align-self: center;
	color: white;

}

.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;
}

.newsPost {
	font-size: 15px;
	display: grid;
	grid-area: L183;
	justify-content: center;
	align-self: center;
}

.newsPost a {
	text-decoration: none;
	color: white;
}

.newsPost2 {
	font-size: 15px;
	display: grid;
	grid-area: mcat;
	justify-content: center;
	align-self: center;
}

.newsPost2 a {
	text-decoration: none;
	color: white;
}


@media screen and (min-width: 769px) {

	.grid{
		display: grid;
		grid-template-columns: 1fr 1fr 1fr 1fr ;
		grid-template-rows: 100px 200px 150px 150px;
		grid-template-areas: 
		"linklogo menu menu menu"
		". title title ."
		". L183 L183 ."
		". mcat mcat ."
	}

	.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;
	}

	.newsPost {
		font-size: 18px;
		display: grid;
		grid-area: L183;
		justify-content: center;
		align-self: center;
		border: 5px solid white
	}

	.newsPost a:hover {
		font-style: italic;
	}
	
	.newsPost2 {
		font-size: 18px;
		display: grid;
		grid-area: mcat;
		justify-content: center;
		align-self: center;
		border: 5px solid white
	}

	.newsPost2 a:hover {
		font-style: italic;
	}

	
}