body {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Montserrat, sans-serif;
	font-weight: 900;
}
body * {
	cursor: none;
}

.shapes {
	position: relative;
	height: 100vh;
	width: 100vw;
	background: #2128bd;
	overflow: hidden;
}

.shape {
	will-change: transform;
	position: absolute;
	border-radius: 50%;
}

.shape-1 {
	background: #005ffe;
	width: 650px;
	height: 650px;
	margin: -325px 0 0 -325px;
}
.shape-2 {
	background: #ffe5e3;
	width: 440px;
	height: 440px;
	margin: -220px 0 0 -220px;
}
.shape-3 {
	background: #ffcc57;
	width: 270px;
	height: 270px;
	margin: -135px 0 0 -135px;
}

.cursor {
	position: fixed;
	background-color: #2128bd;
	height: 20px;
	width: 20px;
	border-radius: 50%;
	margin: -10px 0 0 -10px;
	will-change: transform;
	user-select: none;
	pointer-events: none;
	z-index: 999999;
}

.content {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	width: 100vw;
	background-color: white;
	mix-blend-mode: screen;
}
h1 {
	color: #000;
	font-size: 10em;
	margin: 0;
}
