* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	display: grid;
	place-items: center;
	min-height: 74vh;
	background: #afe0f0;
	overflow: hidden;
}
.list {
	display: flex;
	gap: 10px;
}
.circle div {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	border-radius: 50%;
	box-shadow: inset 0 50px 150px rgba(0, 0, 0, 1);
	border-bottom: 1px solid #fff;
}
.circle div:nth-child(3) {
	width: 1100px;
	height: 1100px;
}
.circle div:nth-child(4) {
	width: 1300px;
	height: 1300px;
}