/* Ben Collins */

html {
	height: 100%;
}
body {
	color: white;
	font-family: Helvetica, Poppins, sans-serif;
	font-size: 1em;
	height: 100%;
	background: linear-gradient(to top, black, #24004a);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

h1 {
	font-size: 2.5em;
}

h2 {
	font-size: 1em;
	font-style: italic;
}

header {
	display: flex;
	align-items: center;
	gap: 50%;
	margin: 0 2.5%
}

header h2 {
	text-align: right;
}

nav {
	background-color: #24004a;
	border: solid white;
}

nav ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	list-style-type: none;
	padding: 0;
	margin: 0;
}

nav li {
	flex-basis: 20%;
	text-align: center;
	padding: 1% 0;
}

nav a {
	display: block;
	font-weight: bold;
	color: white;
	text-decoration: none;
}

nav a:hover, nav a:focus, button:hover, button:focus {
	color: #d15a00;
	text-decoration: underline;
}

li#current {
	background-color: white;
}

li#current a {
	color: #24004a;
}

img {
	float: right;
	width: 25%;
	max-width: 100%;
	height: auto;
	margin: 0 5% 5% 2%;
	min-width: 20%;
	border: 3px solid white;
	border-radius: 25px;
}

section {
	margin: 5% 2%;
}

section h2 {
	font-size: 1.25em;
}

button {
	display: block;
	width: 30%;
	background-color: white;
	border-radius: 25px;
	padding: 2% 0;
	margin: auto;
	margin-top: 5%;
	font-size: 1.5em;
	font-weight: bold;
	text-decoration: none;
}

footer {
	font-size: 0.75em;
	clear: both;
	text-align: center;
	padding-bottom: 1%;
}

#print {
	width: 15%;
}

@media screen and (max-width: 768px) {
	header {
		flex-direction: column;
	}
	
	header h2 {
		text-align: center;
	}
	
	nav ul {
		flex-direction: column;
	}
	
	nav li {
		width: 100%
	}
	
	main aside {
		display: none;
	}
	
	img {
		display: none;
	}
	
	button {
		font-size: 1em;
		width: 60%;
	}
}