<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Colors */

:root {
	--brand-primary: #010122;
	--brand-accent: #e28413;
	--brand-secondary: #fff0dd;
}

.heading {
	line-height: var(--fs-4);
	font-size: var(--fs-4);
	font-weight: bold;
	color: black;
}

footer {
	padding: 0;
}

nav {
	padding: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	text-align: center;
	gap: 0.5rem;
	width: 100vw;
	color: black;
}

nav ul {
	display: flex;
	flex-direction: column;
	margin: 0.5rem;
	padding: 0;
	list-style: none;
}
li {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 0.25rem;
	align-items: center;
}

@media screen and (min-width: 768px) {
	.heading {
		line-height: var(--fs-5);
		font-size: var(--fs-5);
	}
	nav {
		flex-direction: row;
		align-items: flex-end;
		padding: 1rem;
	}

	nav ul.left {
		text-align: left;
		align-items: flex-start;
	}

	nav ul.right {
		text-align: right;
		align-items: flex-end;
	}
}

a {
	text-decoration: none;
}

.orbitron,
.logo {
	font-family: "Orbitron", serif;
}

.main {
	padding: 1rem 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	justify-content: center;
	align-items: center;
}


:root{
	--width: 278px;
	--height: 278px;
	--a: calc(var(--width) * 0.08);
	--b: calc(var(--width) * 0.19);
	--c: calc(var(--width) * 0.41);

	--eye-border-color: #131a1d;
	--background-color: #e8e8e8;
	--eyelid-color: #263238;
	--iris-color: radial-gradient(circle, rgba(0,212,255,1) 0%, rgba(1,189,240,1) 7%, rgba(5,105,184,1) 33%, rgba(9,9,121,1) 34%, rgba(7,7,102,1) 56%, rgba(5,4,72,1) 78%, rgba(2,0,39,1) 99%, rgba(2,0,36,1) 100%);

	--iris-color: var(--brand-primary);

	--triangle-size: 78px;
	--triangle-size-2: 80px;
	--triangle-size-3: 82px;
	--triangle-color: #e8e8e8;
}

.eye {
	position: relative;
	width: var(--width);
	height: var(--height);
	border-radius: 0%;
	background: var(--background-color);
	border: var(--a) solid var(--eye-border-color);
	overflow: hidden;
	box-sizing: border-box;
	border-radius: 50%;
	margin: 10px;
}

.eye::after {
	 /* eyelid */
	content: '';
	position: absolute;
	left: 0;
	top: -40%;
	width: 100%;
	height: 100%;
	background: var(--eyelid-color);
	z-index: 5;
	border-bottom: var(--a) solid var(--eye-border-color);
	box-sizing: border-box;
	
	animation: eyeShade 5s infinite;
	
}

.eye::before {
	content: '';
	position: absolute;
	left: 25%;
	bottom: 10px;
	width: var(--c);
	z-index: 2;
	height: var(--c);
	background: var(--iris-color);
	border-radius: 50%;
	animation: eyeMove 5s infinite;
}

@keyframes eyeShade {
	0% {
	transform: translateY(0)
	}

	20% {
	transform: translateY(10%)
	}

	35% , 45% {
	transform: translateY(-12%)
	}

	55% {
	transform: translateY(-10%)
	}

	70% {
	transform: translateY(5%)
	}

	85% {
	transform: translateY(5%)
	}

	100% {
	transform: translateY(0)
	}
}

@keyframes eyeMove {
	0% {
	transform: translate(0 , 0)
	}

	20% {
	transform: translate(0% , 8%)
	}

	35% , 45% {
	transform: translate(0% , -15%)
	}

	55% {
	transform: translate(-25% , -20%)
	}

	70% {
	transform: translate(0% , 7%)
	}

	85% {
	transform: translate(20% , 5%)
	}

	100% {
	transform: translate(0 , 0)
	}
}</pre></body></html>