@charset "utf-8";

body {
	position: relative;
	cursor: none;
}

.cursor, .follower {
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
}

.cursor {
	width: 8px;
	height: 8px;
	background-color: #000;
	z-index: 1001;
}

.follower {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	background-color: rgba(37,192,55,0.8);
	z-index: 1000;
	transition: transform ease .1s;
	text-align: center;
	animation: followerFadeIn 5s linear both;
}

	.follower.is-active {
		transform: scale(3);
	}

@keyframes followerFadeIn {
	0%{
		opacity: 0;
	}100%{
		opacity: 1;
	}
}


