* {
  font-family: sans-serif;
  letter-spacing: -5px;
  cursor: grabbing;
  margin: 0;
  box-sizing: border-box;
  position: absolute;
}
* ::selection {
  background: none;
}

body {
  background: #3590f3;
  overflow: hidden;
}

span {
  width: 100vw;
  font-size: 5rem;
  font-weight: bold;
  line-height: 4rem;
  word-break: break-all;
  text-align: center;
}
span.fill {
  color: #fff;
  z-index: 0;
}
span.outline {
  color: transparent;
  -webkit-text-stroke: 0.5px #fff;
  z-index: 2;
}

#circle {
  height: 200px;
  width: 200px;
  border-radius: 50%;
  background: #3590f3;
  border: 15px solid #fff;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
  top: calc(50vh - 100px);
  left: calc(50vw - 100px);
}