body {
	background-color: #333;
	color: #fff;
	font-family: sans-serif;
	font-size: 5rem;
	padding-top: 5vh;
}

.wrapper {
	display: flex;
	justify-content: center;
}

.title {
	text-align: center;
}

/* ====================================================== */

.title {
	position: relative;
}

.title::before,
.title::after {
	content: '';

	display: block;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	border: 5px solid #ffff;
	position: absolute;
	top: 0%;
}

.title::before {
	background: #ff0000;
	left: -150px;
}

.title::after {
	background: #3b45ff;
	right: -150px;
}