* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: #f4f4f4;
	background: linear-gradient(13deg, #FBE7C6, rgba(0,0,0,0)),
	linear-gradient(125deg, #B4F8C8, rgba(0,0,0,0)),
	linear-gradient(242deg, #FFAEBC, rgba(0,0,0,0));
	color: #333;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	padding: 20px;
	font-family: "Noto Sans", sans-serif;
}

.container {
	position: relative;
	background-color: rgba(255, 255, 255, 0.7);
	border-radius: 15px;
	max-width: 800px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	width: 100%;
	margin: 20px;
	overflow: hidden;
	z-index: 0;
}

.site {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 30px;
	padding: 20px;
}

.background-art {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 10rem;
	width: 10rem;
	z-index: 1;
	mask-image: url('art.svg');
	mask-size: contain;
	background-color: #0e0e0e10;
	pointer-events: none;
}

.flex-container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px 40px;
	flex-wrap: wrap;
}

header img {
	width: 150px;
	height: 150px;
	border-radius: 50%;
}

.header-text {
	flex: 0 1 0%;
}

header h1, header p {
	font-family: "IBM Plex Mono"; 
	white-space: pre;
}

header h1 {
	font-size: 2.5em;
	margin-bottom: 10px;
}

header h1::after {
	content: '_';
	animation: blink-animation 1s infinite;
}

@keyframes blink-animation {
	0%, 49% {
		visibility: hidden;
	}
	50%, 100% {
		visibility: visible;
	}
}

header p {
	font-size: 1.2em;
	color: #666;
}

.content {
	text-align: center;
}

.content p {
	font-size: 1em;
	line-height: 1.5;
	margin: 0 auto;
	max-width: 600px;
}

.pills {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
}

.pill {
	font-size: 80%;
	border-radius: 9999px;
	padding: 5px 15px;
	background: #E0E0E0;
	transition: background-color 0.2s;
}

a.navigation:link, a.navigation:visited {
	display: block;
	color: #777;
	text-decoration: none;
	font-size: 80%
}

/*
 * Currently not clickable
 */
/*
.pill:hover {
	background: #C0C0C0;
	cursor: pointer;
}
*/

.social-links {
	text-align: center;
	isolation: isolate;
}

.social-links h2 {
	font-size: 1.5em;
	margin-bottom: 10px;
}

.social-links a {
	display: inline-block;
	width: 32px;
	height: 32px;
	margin: 5px 10px;
	font-size: 1em;
	color: #0077b5;
	text-decoration: none;
	mask-size: contain;
	mask-repeat: no-repeat;
	background-color: #333;
	border-radius: 20%;
	transition: background-color 0.2s;
}

.social-links a.linkedin {
	mask-image: url('linkedin-inv.svg');
}

.social-links a.github {
	mask-image: url('github-inv.svg');
}

.social-links a.twitter {
	mask-image: url('twitter-inv.svg');
}

.social-links img {
	width: 32px;
	height: 32px;
	display: block;
	visibility: hidden;
}

.social-links a:hover {
	background-color: #0077b5;
	color: #fff;
}

@media (max-width: 600px) {
	header h1 {
		font-size: 2em;
	}

	header p {
		font-size: 1em;
	}

	header img {
		width: 120px;
		height: 120px;
	}

	.content p {
		font-size: 0.9em;
	}

	.social-links a {
		font-size: 0.9em;
		padding: 6px 10px;
	}
}
