html {
	/*background-color: #4c5c96;*/
	background-image: url("images/mt-rainier.jpg"),
	                  url("images/mt-rainier-loading.webp");
	background-image: image-set(
		"images/mt-rainier.avif" type("image/avif"),
		"images/mt-rainier.jpg" type("image/jpeg")
	);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;

	backdrop-filter: blur(50px);
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	width: 100%;
	height: 100%;
	line-height: 1.4;
}

body {
	width: 800px;
	margin: auto;

	background-color: rgba(0, 0, 0, 0.75);
	border-radius: 10px;
	padding: 5px;

	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	flex-direction: column;
}

h1 {
	font-weight:100;
	font-family: 'Roboto Slab', Georgia, Times, "Times New Roman", serif;
	font-size: 60px;
	margin-bottom: 0px;
	margin-top: 10px;
	text-align: center;
	color: #fff;
}

p {
	font-family: 'Lato', calibri, arial;
	font-size: 20px;
	color: #fff;
}

footer p {
	font-size: 11px;
	text-align: center;
}

p.main-links {
	text-align: center;
	font-family: 'Roboto Slab';
}

.links {
	text-align: center;
	font-size: 30px;
}

a.links {
	padding: 5px;
}

.about {
	width: 60ch;
	max-width: 100%;
}

article {
	text-align: left;
}

a:link {
	color: #B3E5FC;
	text-decoration: none;
}
a:visited {
	color: #B3E5FC;
		text-decoration: none;
}
a:hover {
	color: #fff;
	text-decoration: underline;
}
a:active {
	color: #fff;
	text-decoration: underline;
}

a:link path {
	fill: #B3E5FC;
}
a:visited path {
	fill: #B3E5FC;
}
a:hover path {
	fill: #fff;
	text-decoration: underline;
}
a:active path {
	fill: #fff;
	text-decoration: underline;
}

.links a {
	padding-left: 5px;
	padding-right: 5px;
}

.links a:hover {
	text-decoration: none;
}

.links a:active {
	text-decoration: none;
}

/* Mobile Devices */
@media (max-width: 650px) {
	body {
		width: 95%;
	}

	h1 {
		font-size: 3.5rem;
	}
}
