@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #363636;
}

.container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.container .circle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 200px;
  height: 200px;
  border-radius: 50%;
}

.container .circle::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: #222;
  opacity: 0.8;
}

.container .circle::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: #333;
  border: 15px solid #4d4c51;
  border-radius: 50%;
  box-shadow: inset 0 5px 10px rgba(0, 0, 0, 0.25),
    0 10px 10px rgba(0, 0, 0, 0.75), 0 -2px 2px rgba(255, 255, 255, 0.5),
    inset 0 4px 2px rgba(0, 0, 0, 0.25),
    inset 0 -2px 2px rgba(255, 255, 255, 0.5);
}

.container .circle .number {
  position: relative;
  color: #fff;
  line-height: 1em;
  font-size: 2em;
  z-index: 10;
}

.container .circle .number span {
  font-size: 0.5em;
}

.container .circle h4 {
  position: relative;
  color: #fff;
  z-index: 10;
  font-weight: 500;
  font-size: 0.8em;
  text-transform: uppercase;
  line-height: 0.6em;
}
