.container {
  margin: 0;
  padding: 0;
  height: 100vh;
  min-width: 300px;
  min-height: 300px;

  display: flex;
  justify-content: center;
  align-items: center;

  background: #fff;
}

.wrapper {
  width: 300px;
  height: 300px;
  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;

  background: lightblue;
  position: relative;
}

.wrapper canvas {
  width: 100%;
  height: 100%;
}

.wrapper #percentage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  font-size: 50px;
  line-height: 30px;
  font-style: italic;
  font-weight: 700;
  font-family: "Courier New", Courier, monospace;
  color: rgb(192, 20, 20);
  text-align: center;
}

.wrapper #percentage span {
  font-size: 20px;
  line-height: 20px;
  color: darkgray;
}
