* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: "Trebuchet MS", "Lucida Sans Unicode" "Lucida Grande",
		"Lucida Sans", Arial, sans-serif;
}

body {
	margin: 0;
	min-height: 100vh;
	padding-top: 50px;
	background-color: floralwhite;
	color: black;
}

.anchor {
	scroll-margin-top: 70px;
}

nav {
	background-color: black;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 9999;
}

nav ul {
	width: 100%;
	list-style: none;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

nav li {
	height: 50px;
}

nav a {
	height: 100%;
	width: 100%;
	padding: 0 30px;
	text-decoration: none;
	display: flex;
	align-items: center;
	color: white;
}

nav a:hover {
	background-color: grey;
}

nav li:first-child {
	margin-right: auto;
}

h1 {
	text-align: center;
	margin-top: 40px;
	margin-bottom: 20px;
	font-size: 4em;
}

h2 {
	text-align: center;
	margin-top: 40px;
	margin-bottom: 20px;
	font-size: 25px;
}

h3 {
	font-size: 23px;
	padding-bottom: 10px;
}

.about_us p {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 1.5em;
}

.members,
.reviewers {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.member,
.reviewer {
	margin: 20px;
	background-color: white;
	color: black;
	width: 280px;
	height: 360px;
	border-radius: 22px;
	border: grey;
	padding: 13px 0 10px 25px;
	margin: 20px;
	box-shadow: 5px 5px 8px 2px grey;
}

#me {
	padding-right: 10px;
}

.name {
	display: block;
	width: 100%;
	text-align: center;
	font-weight: bold;
	font-size: 1.3em;
	padding: 10px 0 0 0;
}

.member-pic,
.reviewer-pic {
	height: 250px;
	width: 230px;
	border: 2px solid black;
	border-radius: 10px;
}

.member-info,
.reviewer-info {
	display: block;
	text-align: center;
}

.files {
	margin: 30px 0 50px 50px;
}

.file {
	margin: 0 0 10px 0;
}

.file-pic {
	height: 20px;
}
.file-name {
	font-size: 1.3em;
	text-decoration: none;
	color: black;
}

.file-name:hover {
	color: skyblue;
}

footer {
	margin: 0;
	padding: 20px;
	text-align: center;
	color: grey;
	background-color: black;
	height: 50px;
}
