@charset "utf-8";
body,
html {
	height: 100%;
}

body {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0;
	background-color: #212121;
}

.text-box {
	width: 700px;
	height: 400px;
	font-size: 4rem;
	font-weight: bold;
	text-transform: uppercase;
	position: relative;
	overflow: hidden;
	clip-path: url(#svgTextPath);
	color: white;
	background: #2fddc6;

}

.dot {
	display: inline-block;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0.9;
}

.dot:nth-child(1) {
	width: 150px;
	height: 150px;
	background: rgb(30, 207, 148);
	z-index: 8;
	transform: translateX(-175px) translateY(-175px);
}

.dot:nth-child(2) {
	width: 300px;
	height: 300px;
	background: rgb(28, 204, 195);
	z-index: 7;
	transform: translateX(-250px) translateY(-250px);
}

.dot:nth-child(3) {
	width: 500px;
	height: 500px;
	background: rgb(18, 155, 247);
	z-index: 6;
	transform: translateX(-350px) translateY(-350px);
}

text {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
		Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
	font-weight: bold;
	font-size: 8rem;
	text-transform: uppercase;
}