@font-face {
	font-family: "Sometype Mono";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("/fonts/font.woff2") format("woff2");
}

:root {
	--site-font-family:
		"Sometype Mono", "SFMono-Regular", "SF Mono", Menlo, Monaco, Consolas,
		"Liberation Mono", "Courier New", monospace;
	color-scheme: dark;
	background: #040404;
	font-family: var(--site-font-family);
}

html,
body {
	min-height: 100%;
}

body {
	margin: 0;
	background: #040404;
	color: #ffffff;
	overflow-x: hidden;
}

.page {
	display: flex;
	min-height: 100vh;
	align-items: center;
	justify-content: center;
	padding: 2rem 1.25rem;
}

.container {
	display: flex;
	width: min(100%, 28rem);
	flex-direction: column;
	align-items: center;
}

.logo {
	height: auto;
	width: 20rem;
	margin-bottom: 1.5rem;
}

.tagline {
	margin: 0 0 3rem;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 700;
	text-shadow:
		0 0 3px rgba(255, 255, 255, 0.11),
		0 0 8px rgba(255, 255, 255, 0.035);
}

.content {
	width: 100%;
	text-align: center;
}

.projects {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin: 0 0 2rem;
	text-align: left;
}

.project-group {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.project-group + .project-group {
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.project {
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	margin: 0;
}

.iridescent-link {
	color: transparent;
	background-image: linear-gradient(115deg,
			#fbfbfb 0%,
			#f6dfad 20%,
			#f0c3da 40%,
			#b8d8fb 60%,
			#d9c0f0 80%,
			#fbfbfb 100%);
	background-size: 220% 220%;
	background-position: 0% 50%;
	-webkit-background-clip: text;
	background-clip: text;
	text-decoration: none;
	text-shadow: 0 0 16px rgba(186, 198, 235, 0.12);
	animation: iridescent-shift 7s linear infinite;
	animation-delay: var(--iridescent-delay, 0s);
	transition:
		text-shadow 180ms ease-out,
		opacity 180ms ease-out;
}

.white-glow-link {
	color: #ffffff;
	text-decoration: none;
	text-shadow:
		0 0 3px rgba(255, 255, 255, 0.11),
		0 0 8px rgba(255, 255, 255, 0.035);
	transition: text-shadow 180ms ease-out;
}

.project a {
	font-weight: 700;
}

.project a:hover,
.project a:focus-visible,
.social-links a:hover,
.social-links a:focus-visible {
	text-decoration: underline;
	text-underline-offset: 0.18em;
	text-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.project span {
	color: #aaaaaa;
}

.social-links {
	margin-top: 4rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem;
}

.social-links a {
	font-weight: 600;
}

@keyframes iridescent-shift {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (max-width: 640px) {
	.projects {
		gap: 1.25rem;
	}

	.project-group + .project-group {
		padding-top: 1.25rem;
	}

	.project {
		flex-direction: column;
		align-items: flex-start;
	}

	.project span {
		font-size: 0.95rem;
	}

	.social-links {
		margin-top: 3rem;
	}
}