@import url(https://fonts.bunny.net/css?family=abril-fatface:400|alegreya-sc:400,700i);
:root{
--colorlightblu: #548fa1;
--colorwhite: #Dee7e5;
--colorblack: #271b1d;
--colordarkblu: #364e5c;
--colorwarmgrey: #514a4c;
}
body {
	display: grid;
	grid-template-rows: .5fr 1fr;
	grid-template-columns: repeat(4, 1fr); 
	grid-column-gap: 10px;
	width: 100%;
	height: 100%;
	
}
header{
	display: grid;
	grid-area: 1/2/2/3;
	align-self: end;
	font-family: 'Abril Fatface', display;
	text-transform: uppercase;
	font-size: 26px;
	letter-spacing: -1px;
}
header p{
	border: none;
	margin-top: 0;
	margin-bottom: 0;
}
nav {
	display: grid;
	grid-area: 2/3/3/4;
	background-color: red;
	font-family: 'Alegreya SC', serif;
	width: 1fr;
}
ul {
	list-style-type: none;
	font-family: 'Alegreya SC',serif;
	align-content: center;
}
ul li {
	font-size: 22px;
	letter-spacing: 1.6px;
	border-left: 10px solid #1C6EA4;
}
a{
	color: black;
}
main {
	display: grid;
	grid-area: 2/2/3/3;
	background-color: none;
	font-family: 'Alegreya SC', serif;
	width: 1fr;
}
