
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display+SC&family=Playwrite+BE+VLG:wght@100..400&display=swap');

body {
	font-family: "Playfair Display SC", 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;
	background-color: rgba(255,255,255,.4);
	display: flex;
	flex-direction: column;
	min-height: 50vh;
	align-items: center;
	justify-content: center;
	position: relative;
}

h1 {
	font-size: 1.25em;
	position: relative;
	top: 0;
	left: 0;
}
h2 {
	font-size: 12vw;
}

p1 {
  outline: 1px solid black;
  padding: 8px;
  margin: 8px; 
  background-color: #deb;
  align-items: center;
}

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%;
	}
.home main {
	display: flex;
	flex-direction:row;
	justify-content: space-between;
}
.home main section {
  width:40%;
}
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;
}

/* 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)
	}
}

