.mainCircle {
	margin-top: 80px;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background-color: #f2f2f2;
	box-shadow: 7px 7px #a9a9a9;
	display: inline-block;
	position: relative;
	transition: 0.3s;
}
.chartDescript {
	top: 50%;
	left: 50%;
	width: 190px;
	height: 190px;
	font-family: "맑은 고딕", Gothic;
	font-size: 30px;
	line-height: 1.5em;
	background-color: #ffffff;
	box-shadow: -7px -7px #a9a9a9;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 99;
}
.chartBar {
	width: inherit;
	height: inherit;
	border-radius: 50%;
	position: relative;
}
.chartItems {
	font-family: "맑은 고딕", Gothic;
	font-size: 18px;
	color: #ffffff;
	position: absolute;
}

@media (max-width:1000px){
	.mainCircle {
		width: 400px;
		height: 400px;
	}
	.chartDescript {
		width: 150px;
		height: 150px;
		font-size: 25px;
	}
}

@media (max-width:800px){
	.mainCircle {
		margin-top: 50px;
		width: 300px;
		height: 300px;
	}
	.chartDescript {
		width: 120px;
		height: 120px;
		font-size: 20px;
	}
	.chartItems {
		font-size: 13px;
		line-height: 1.3em;
	}
}