html {
	background-attachment: fixed;
	background-color: #3F5EFB;
	background-image: linear-gradient(180deg, #2C60FF 0%, #994CD0 75%, #FF406C 100%);
	color: #000;
	font-family: "tahoma", "verdana", "helvetica", "arial", "sans-serif";
	font-size: 14pt;
}

body {
	margin: 0;
	padding: 0;
}

a {
	color: #0860CC;
	cursor: pointer;
	text-decoration: none;
	transition-duration: 0.5s;
	transition-property: color;
}

a:hover {
	color: #2FA1F0;
	text-decoration: underline;
}

a.nsfw {
	color: #D82B73;
	transition-property: color;
}

a.nsfw:hover {
	color: #FF337C;
	text-decoration: underline;
}

main {
	background-color: rgba(255, 255, 255, 0.75);
	border-radius: 1rem;
	filter: drop-shadow(0 0 1rem rgb(0, 0, 127, 0.75));
	margin: 2rem auto;
	max-width: 48rem;
	padding: 1rem;
}

ul.link-stack {
	align-items: center;
	display: flex;
	flex-direction: column;
	padding: 0;
}

ul.link-stack li {
	height: 2.5rem;
	list-style-type: none;
	padding: 0.2rem;
}

ul.link-stack li a {
	align-items: center;
	background-color: rgba(255, 255, 255, 0.5);
	border: thin solid rgb(63, 63, 127, 0.75);
	border-radius: 0.5rem;
	display: flex;
	filter: drop-shadow(0 0 0.25rem rgb(0, 0, 127, 0.25));
	height: 2.25rem;
	line-height: 2.25rem;
	margin: auto;
	max-width: 90%;
	padding: 0.1rem;
	text-decoration: none;
	transition-duration: 0.5s;
	transition-property: background-color, color;
	width: 20rem;
}

ul.link-stack li a:hover {
	background-color: rgba(255, 255, 255, 0.75);
}

ul.link-stack li a img {
	margin: 0 1rem;
	max-height: 2rem;
	max-width: 2rem;
	position: absolute;
	vertical-align: middle;
}

ul.link-stack li a .link {
	margin: auto;
}

.closed {
	animation: 1s linear 0s 1 fade-out;
	opacity: 0;
}

.opened {
	animation: 1s linear 0s 1 fade-in;
	opacity: 1;
}

.modal {
	background-color: rgba(255, 255, 255, 0.75);
	border: thin solid rgb(63, 63, 127, 0.75);
	border-radius: 0.5rem;
	filter: drop-shadow(0.5rem 0.5rem 0.5rem rgb(0, 0, 63, 0.25));
	margin: auto;
	max-width: 95%;
	vertical-align: middle;
	width: 33rem;
}

.modal p {
	margin: 1rem;
}

.overlay {
	background-color: rgba(0, 0, 0, 0.75);
	bottom: 0;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
}

.viewer {
	display: flex;
	width: 100%;
}

.viewer img {
	filter: drop-shadow(0.5rem 0.5rem 0.5rem rgb(0, 0, 63, 0.25));
	margin: auto;
	max-height: 95%;
	max-width: 95%;
	vertical-align: middle;
}

#pfp {
	margin-bottom: 2rem;
}

#pfp * {
	margin: 1rem auto;
}

#pfp figcaption {
	background: linear-gradient(90deg, #FF406C 0%, #2C60FF 100%);
	filter: drop-shadow(0 0 0.33rem #FFFFFF);
	background-clip: text;
	color: transparent;
	font-size: xx-large;
	letter-spacing: 0.6rem;
	overflow: visible;
	text-align: center;
	width: fit-content;
}

@supports (-webkit-touch-callout: none) {
	#pfp figcaption {
		letter-spacing: 0.4rem;
	}
}

@supports not (-webkit-touch-callout: none) {
	#pfp figcaption:after {
		content: " ";
		margin-left: -0.6rem;
	}
}

#pfp img {
	display: block;
	filter: drop-shadow(0.2rem 0.2rem 0.5rem rgb(0, 0, 191, 0.25));
	width: 12rem;
}

#portal {
	position: fixed;
}

@keyframes fade-out {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
}

@keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
}
