html {
	background-color: rgb(25 25 41);
	overflow-x: hidden;
}

body::before {
	content: "";
	display: block;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background-image: url(/About/mountainside.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

body {
	color: aliceblue; /* :) */
	overflow-x: hidden;
}

p, h1, h2, h3, a {
	font-family: ocr-a-std, monospace;
	overflow-wrap: anywhere;
}

a {
	text-decoration: underline;
	color: aliceblue;
}

.topbar {
	display: inline-block;
	margin-bottom: 12px;
	max-width: 100%;
	max-height: 100vh;
	height: auto;
}

img {
	margin-bottom: 5px;
}

header {
	text-align: center;
}

.header-title {
	text-align: center;
	padding-top: 30px;
}

.navbar {
	max-width: 660px;
	display: flex;
	justify-content: space-evenly;
	background-color: rgba(80, 80, 80, 0.8);
	margin: auto;
	padding-bottom: 5px;
}

.navbar > a, .navbar > p {
	margin-top: 10px;
	margin-bottom: 5px;
}

.text-module {
	background-color: rgba(80, 80, 80, 0.8);
	max-width: 600px;
	margin: auto;
	padding-left: 30px;
	padding-right: 30px;
	padding-bottom: 10px;
	margin-bottom: 15px;
}

.text-module > p {
	padding-top: 25px;
}

@keyframes fade-left {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fade-right {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.scroll-animation-right-delayed {
	opacity: 0;
	animation: fade-right 1s ease-out forwards;
	animation-delay: 0.5s;
}

.scroll-animation-left-delayed {
	opacity: 0;
	animation: fade-left 1s ease-out forwards;
	animation-delay: 1s;
}

@media screen and (max-width: 800px) {
	.scroll-animation-left-delayed {
		opacity: 0;
		animation: fade-left 1s ease-out forwards;
		animation-play-state: paused;
	}
}

.scroll-animation-left {
	opacity: 0;
	animation: fade-left 1s ease-out forwards;
	animation-play-state: paused;
}

.scroll-animation-right {
	opacity: 0;
	animation: fade-right 1s ease-out forwards;
	animation-play-state: paused;
}

footer {
	margin: auto;
	text-align: center;
	font-size: smaller;
}

#module-header, #module-copyright {
	max-width: max-content;
}

#module-gold {
	background-color: rgba(255, 215, 0, 0.8);
	color: black;
	font-family: fantasy;
}

#module-gold > p {
	font-family: "Papyrus", "Comic Sans MS", serif;
}