@font-face {
	font-family: 'Sofia';
	src: url(https://fonts.gstatic.com/s/sofia/v14/8QIHdirahM3j_su5uI0.woff2) format('woff2');
}

@font-face {
	font-family: 'Aldrich';
	src: url(https://fonts.gstatic.com/s/aldrich/v21/MCoTzAn-1s3IGyJMVacY3w.woff2) format('woff2');
}

@font-face {
	font-family: 'Mono';
	src: url(https://fonts.gstatic.com/s/notosansmono/v30/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_FNJ093dVQ.woff2) format('woff2');
}

@font-face {
	font-family: 'Poppins';
	src: url(https://fonts.gstatic.com/s/poppins/v22/pxiEyp8kv8JHgFVrJJfecg.woff2) format('woff2');
}

::-webkit-scrollbar {
	width: .5vw;

}

::-webkit-scrollbar:hover {
	width: 2vw;
}

::-webkit-scrollbar-track,
::-webkit-scrollbar-track:hover {
	background: #000;
}

::-webkit-scrollbar-thumb {
	background: #f0d;
	border-radius: 1em;
}

::-webkit-scrollbar-thumb:hover {
	background: #FFF;
}

* {
	font-family: 'Aldrich';
	color: var(--foreground-c)
}

html {
	background-color: var(--background-c);
	background-image: url(/r/media/galaxy_blur.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-attachment: fixed;
	--font-base: calc(min(4vw, min(4vh, 18px)));
	--foreground-c: #ddd;
	--background-c: #000;
	--background-c-75: #000C;
	--background-c-50: #0008;
	--background-c-25: #0004;
}

body {
	text-align: center;
	font-size: var(--font-base);
	margin: 0;
	padding: 0;
	background: transparent;
	min-height: 100vh;
}

header {
	background: #000;
	padding: .25em 3ch;
	display: flex;
	justify-content: space-between;
	position: sticky;
	top: 0;
	left: 0;
	z-index: 1000;
}

header h3 {
	color: #f0d;
}

h1,
h2,
h3 {
	color: var(--foreground-c);
	width: fit-content;
	margin: 0 auto;
}

a,
a:visited {
	color: var(--foreground-c);
	text-decoration: none;
}


content {
	display: flex;
	padding-bottom: var(--font-base);
	min-height: calc(100vh - 4.77em - var(--font-base));
}

footer {
	font-size: 1.3em;
	background-color: #000;
	width: 100%;
	padding: .5em 0;
}

footer * {
	color: #fff !important;
}