* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	position: relative;
	background: linear-gradient(45deg, #111, #333, #111);
	color: #fff;
	font-family: 'Poppins', sans-serif;
	min-height: 100vh;
}

ul {
	list-style: none;
	margin-bottom: 16px;
}

nav {
	background-color: #222;
	width: 100%;
	padding: 16px 40px;
	height: 60px;
	position: fixed;
	top: 0;
	left: 0;

	font-weight: 500;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: start;
	gap: 32px;

	z-index: 1;
}

footer {
	position: absolute;
	bottom: 0;
	font-size: 10px;
	margin: 24px 0 4px 0;
	color: #777;
}

h1 {
	font-size: 40px;
	font-weight: 600;
	margin-bottom: 45px;
	text-align: center;
	max-width: 85%;
	line-height: 125%;
}

h2 {
	border-bottom: #fff 2px solid;
	padding: 0 6px;
	margin-bottom: 30px;
	letter-spacing: -0.05px;
	font-size: 26px;
	text-align: center;
	max-width: 85%;
}

h3 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 24px;
	text-align: center;
	max-width: 85%;
}

h4 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 14px;
	text-align: center;
	max-width: 85%;
}

p {
	width: 75%;
	margin-bottom: 40px;
}

blockquote {
	text-align: center;
	font-weight: 500;
	padding: 0 16px;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

a:link,
a:visited {
	color: #77d7ff;
	transition: color 0.1s ease-in-out;
}

a:hover {
	color: #b8eaff;
}

a:active {
	color: #66abff;
}

nav>a:link,
nav>a:visited {
	display: inline-block;
	padding: 2px 0;
	transition: border-bottom-color 0.1s;
	border-bottom: #0000 2px solid;
	color: #fff !important;
	text-decoration: none;
}

nav>a:hover,
nav>a:active {
	color: #ddd !important;
	border-bottom: #ddd 2px solid;
	text-decoration: none;
}

img {
	width: 50%;
	height: auto;
	margin-bottom: 45px;
}

video {
	width: 50% !important;
	height: auto;
	margin-bottom: 45px;
}

audio {
	width: 450px;
	max-width: 80%;
	margin-bottom: 20px;
}

figure {
	width: 100%;
	margin-bottom: 45px;
	
	display: flex;
	flex-direction: column;
	align-items: center;
}

figure>img {
	margin-bottom: 0;
}

.container {
	position: relative;
	background-color: #111;
	margin: 0 60px;
	padding: 80px 0 60px 0;
	min-height: 100vh;

	display: flex;
	flex-direction: column;
	align-items: center;
}

.page-thumbnail {
	object-fit: cover;
	height: 512px;
	width: 512px;
}

#wpadminbar {
	background-color: #5559;
	color: #fff9;
}

@media only screen and (max-width: 450px) {
	.container {
		margin: 0;
	}

	nav {
		padding: unset;
		justify-content: center;
		gap: 7%;
	}

	img {
		width: 75%;
		height: auto;
	}

	video {
		width: 75% !important;
		height: auto;
	}

	audio {
		margin-bottom: 16px;
	}
}