* {
	font-family:
		Comic Sans MS,
		cursive,
		sans-serif;
	/* filter: blur(1px) hue-rotate(180deg) saturate(200%); */
	padding: 0;
	margin: 0;
	cursor: none !important;
	font-size: 50px;
}

*:not(html):not(#cursor):not(#videoContainer) {
	border: 5px dashed yellow;
	border-radius: 250px;
	animation: yellowShades 5s linear infinite;
}

@keyframes yellowShades {
	0% {
		border-color: yellow;
	}
	25% {
		border-color: #ffff00;
	}
	50% {
		border-color: #ffeb3b;
	}
	75% {
		border-color: #fff176;
	}
	100% {
		border-color: greenyellow;
	}
}

@keyframes shakePage {
	0% {
		transform: translate(0, 0) rotate(0deg);
	}
	10% {
		transform: translate(-10px, -10px) rotate(-5deg);
	}
	20% {
		transform: translate(10px, -10px) rotate(5deg);
	}
	30% {
		transform: translate(-10px, 10px) rotate(-5deg);
	}
	40% {
		transform: translate(10px, 10px) rotate(5deg);
	}
	50% {
		transform: translate(-10px, -10px) rotate(-5deg);
	}
	60% {
		transform: translate(10px, -10px) rotate(5deg);
	}
	70% {
		transform: translate(-10px, 10px) rotate(-5deg);
	}
	80% {
		transform: translate(10px, 10px) rotate(5deg);
	}
	90% {
		transform: translate(-10px, -10px) rotate(-5deg);
	}
	100% {
		transform: translate(0, 0) rotate(0deg);
	}
}

@keyframes colorCycle {
	0% {
		background-color: magenta;
	}
	25% {
		background-color: yellow;
	}
	50% {
		background-color: #00ff00;
	}
	75% {
		background-color: #00bfff;
	}
	100% {
		background-color: magenta;
	}
}

html {
	animation:
		shakePage 500s linear infinite,
		colorCycle 6s linear infinite;
	height: 100vh;
	overflow-y: hidden;
}

body {
	height: 100%;
	margin: 0;
	overflow-y: hidden;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

button,
.button,
.btn {
	align-items: right;
	appearance: none;
	border-radius: 6px;
	border-width: 0;
	cursor: pointer;
	display: flex;
	font-weight: 600;
	justify-content: right;
	line-height: 24px;
	padding: 12px 132px;
	text-align: center;
	text-decoration: none;
	transition: all 0.2s ease 0s;
	white-space: nowrap;
}

#cursor,
.remote-cursor {
	position: fixed;
	width: 40px;
	height: 40px;
	background: lightblue url(https://thispersondoesnotexist.com) no-repeat
		fixed center;
	background-size: cover;
	border-radius: 50%;
	animation: spin 1s linear infinite !important;
}

#overlay {
	position: fixed;
	top: 0;
	left: 0;
	min-width: 100%;
	min-height: 100%;
	z-index: -1;
	animation: spin 20s linear infinite !important;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

#surf {
	position: fixed;
	bottom: -100vh;
	right: 0;
	width: 275px;
	height: 600px;
	object-fit: cover;
	border-radius: 19px !important;
    transition: bottom 1s ease-in-out;
}

#surf.load {
    bottom: 0;
    transition: bottom 1s ease-in-out;
}