@import url('https://fonts.googleapis.com/css2?family=Playwrite+BE+VLG:wght@100..400&family=Quando&display=swap');

body {
	font-family: "Quando", serif;
    font-weight: 400;
    font-style: normal;
	font-size: 100%;
	line-height: 135%;
	background: #bcd;
	margin: 0;
	background-image: url("background.jpg");
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
}
footer {
	padding: 0 1em ;
}

header {
	font-family: "Playwrite BE VLG", cursive;
    font-weight: <weight>;
    font-style: normal;
	min-height: 30vh ;
	background-color: #deb;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;
	grid-column: 1 / -1;
	font-size: 3vw;
}

ul.main-links {
	list-style: none;
	padding-left; 0;
	display: flex;
	flex-direction: column;
	height: 6em;
	justify-content: space-between;
	align-items: center;
}

li.main-link {
	width: 75%;
}

.main-links a {
	text-decoration: none;
	background-color: rgba(50, 50, 50,.3);
	color: #fff;
	display: block;
	height: 1.5em;
	text-align: center;
}	
ul.main-links {
		flex-direction: row;
		justify-content: space-evenly;
	}
	
	li.main-link {
		width: 20%;
	}
}
ul.resource-links {
	list-style: none;
	padding-left: 0
	height: 50;
	
}

.resource-links li {
	flex-direction: row;
	
}
.navigation {
  display: flex;
  flex-flow: row wrap;
  list-style: none;
  margin: 0; 
  background: green;
  justify-content: space-evenly;
}

.navigation a {
  text-decoration: none;
  display: block;
  padding: 1em;
  color: white;
}

.navigation a:hover {
  background: blue;
}

.main-links a:hover {
  background: blue;
}
.container {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: auto auto auto;
	grid-auto-flow: row;
	gap: 1em 1em;
}

@media (min-width: 550px) {
}

.first {
	grid-column: 1 / -1 ;
	background-color: #abb;
}

.second {
	grid-column: 3 / 4 ;
	background-color: #abb;
}

.third {
	grid-column: 1 / 2 ;
	grid-row: 2 / 3;
	background-color: #abb;
}

.center {
  display: block;
  width: 115%;
  margin-left: -50px;
}

/* Media Queries ------------------------*/

@media (min-width: 550px) {  /* mid-width screen */
	.grid-parent {
		grid-template-columns: repeat(2, minmax(200px,1fr) );
	}
}

@media (min-width: 850px) {  /*wide screen */
	.grid-parent {
		grid-template-columns: repeat(3, minmax(200px,1fr)
	}
}