.skiplink {
	position: absolute;
	left: -10000px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.skiplink:focus {
	position: static;
	width: auto;
	height: auto;
}
body {
	background-color: seashell;
	margin: 0 auto;
	max-width: 1620px;
}
a {
	text-decoration: underline double;
	color: inherit;
	padding: 0.1em;
	background-color: 0.1em solid #0000000f;
	border-radius: 0.2em;
}
#gridcontainer {
	margin: 1em;
	display: grid;
	gap: 2em;
    grid-template-columns: repeat(12, 1fr);
}
header {
	grid-area: 1 / 1 / 3 / 7;
}
header h1 {
	text-transform: uppercase;
	background-color: crimson;
	color: white;
	font-family: "Open Sans", "Helvetica", sans-serif;
	padding: 0.4em;
	font-size: 350%;
	margin: 0;
	text-align: center;
	border: 0.2em solid darkslategrey;
	border-radius: 0.75em 0.75em 1.5em 1.5em / 2em 2em 1.5em 1.5em;
}
header p {
	text-align: justify;
	font-style: italic;
}

nav {
	grid-area: 1 / 7 / 3 / 13;
}
nav ul {
	display: grid;
	text-align: center;
	list-style-type: none;
	padding: 0.2em;
	margin: 0.1em;
	border-radius: 0.75em;
	background-color: crimson;
	color: white;
	font-family: "Open Sans", "Helvetica", sans-serif;
}
nav ul li {
	width: 100%;
	border-bottom: 0.1em dashed seashell;
	font-size: 150%;
}
a.unstyled {
	color: inherit;
	border: none;
	text-decoration: none;
	background-color: inherit;
}

main {
	grid-area: 3 / 1 / 10 / 13;
}

#people-hero {
    border: 0.2em solid black;
    border-radius: 1em;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
}
#newssampler {
	grid-area: 3 / 1 / 5 / 13;
	padding: 1em;
	border-radius: 1em;
	border: 0.2em solid crimson;
	background-color: darkslategrey;
	color: white;
	list-style-type: none;
	/*TODO change to `display: grid` when news items are ready*/
	display: none;
	grid-template: "a b c d" auto;
	text-align: center;
}
#profilescontainer {
	grid-area: 5 / 1 / 8 / 13;
	display: grid;
	grid-template-areas:
		"a b"
		"c d"
		"e f";
	grid-template-columns: 1fr 1fr;
}
.memberprofile {
	margin: 0.2em;
	display: grid;
}
.memberprofile h3 {
	display: block;
	grid-area: 1 / 1 / 2 / 2;
	text-align: center;
	font-variant: small-caps;
	font-family: "Open Sans", "Helvetica", sans-serif;
	font-weight: bold;
	font-size: 200%;
	height: 1.5em;
	background-color: darkslategrey;
	color: seashell;
	border-radius: 25% 25% 0 0;
	margin-top: 0;
	margin-bottom: 0.25em;
}
.memberprofile h4 {
	grid-area: 2 / 1 / 3 / 2;
	text-align: center;
	font-family: "Open Sans", "Helvetica", sans-serif;
	font-style: italic;
	height: 1em;
	margin-top: 0;
}
.memberdetails {
	grid-area: 3 / 1 / 7 / 2;
	font-size: auto;
	margin: 0.75em;
	height: 20em;
	text-align: justify;
}
.memberdetails strong {
	font-variant: all-small-caps;
}


main p {
	text-align: justify;
	font-family: "Garamond", "Georgia", serif;
}
main h2 {
	color: darkslategrey;
	border-left: 0.1em solid crimson;
	border-bottom: 0.1em solid crimson;
	border-radius: 0.75em;
	padding: 0.2em;
	font-family: "Open Sans", "Helvetica", sans-serif;
	font-weight: bold;
}

.physicaladdress {
	font-size: 110%;
	padding-left: 1em;
	margin-left: 1em;
	text-align: justify;
	font-weight: bold;
	border-left: 0.2em solid darkred;
	border-radius: 0.2em;
}
.googlemap {
	border: 0.5em solid darkred;
	border-radius: 0.2em;
	margin: 2em;
	width: 80%;
	min-width: 600px;
	min-height: 400px;
}

footer {
	grid-area: 11 / 1 / 13 / 13;
	padding: 2em;
	background-color: darkslategrey;
	color: seashell;
	border-radius: 1em;
	border: 0.2em solid crimson;
}

footer a {
	color: yellow;
}

footer p {
	font-style: italic;
	font-size: 90%;
}
