@font-face {
	font-family: "Montserrat Medium";
	src: url("../fonts/Montserrat-Medium.ttf") format("truetype");
	font-display: swap;
}

body {
	padding: 32px;
	background: black;
}

a {
	text-underline-offset: 2px;
	transition: opacity 0.5s;
}

* {
	color: white;
	text-transform: uppercase;
	font-family: "Montserrat Medium", sans-serif;
	font-weight: 500;
	letter-spacing: 4px;
	line-height: 28px;
	font-size: 22px;
	cursor: none;
	user-select: none;
}

#cursor {
	opacity: 0;
	position: fixed;
	width: 30px;
	height: 30px;
	background: #fff;
	border-radius: 50%;
	top: -15px;
	left: -15px;
	z-index: 2;
	mix-blend-mode: difference;
	pointer-events: none;
}

.name {
	color: #aa0000;
	display: inline;
}

.vertical-spacing {
	display: block;
	height: 24px;
}

.fade {
	opacity: 0;
	pointer-events: none;
	animation: fade-in 1s forwards;
}

.fade.first {
	animation-delay: 0.25s;
}

.fade.second {
	animation-delay: 0.65s;
}

.fade.third {
	animation-delay: 1s;
}

.fade.fourth {
	animation-delay: 1.8s;
}

.fade.fifth {
	animation-delay: 2.6s;
}

#eye {
	opacity: 1;
	position: fixed;
	bottom: 8px;
	right: 8px;
	height: 80px;
	width: 80px;
}

#pupil {
	transition: transform 0.1s;
}

@keyframes fade-in {
	from {
		opacity: 0;
		pointer-events: none;
	}
	to {
		opacity: 1;
		pointer-events: all;
	}
}

/* smartphones, touchscreens */
@media (hover: none) and (pointer: coarse) {
	#cursor {
		display: none;
	}

	#eye {
		display: none;
	}
}

@media screen and (max-width: 600px) {
	* {
		font-size: 20px;
	}
}
