:root {
	--background: rgb(255,255,255);
	--red: rgb(236,29,37);
	--green: rgb(102,140,74);
	--blue: rgb(67,120,168);

}
body {
	margin: 0;
	font-family: sans-serif, "Comic Sans MS";
	background-color: var(--red);
	
}
h1 {
	color: white;
	font-size: 2em;
}
p {
	padding: 0 2em;
}
nav li {
	display: inline;
	float: left;
	list-style-type: none;
}

a {
	color: var(--blue);
	text-decoration: none;
}
a:visited {
	color: var(--blue);
}
a:hover {
	color: var(--red);
	text-decoration: underline;
}

.page-container {
    max-width: 960px;
	margin: auto auto;
	background-color: rgb(255, 255, 255);
}

.header {
	background: white;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
#logo {
	/*width: 5em;*/
	height: 5em;
	margin: 0.5em;
}

nav div {
	margin-top: 2.5em;
}
nav div:first-child {
	margin-top: 0;
}

.hero-image {
	background-image: url("./images/Roster.jpg");
	height: 600px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
  }

.grid-2x {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

footer {
	position: sticky;
    top: 100vh;
	clear: both;
	background-color: var(--blue);
	border-top: 5px solid rgb(255, 251, 0);
}