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: '';
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #fff;
  position: absolute;
  top: 5%;
}

.title::before {
  background: red;
  transform: translateX(-150%);
}

.title::after {
  background: blue;
  transform: translateX(50%);
}