* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #7d2ae8;
}
.container {
  background: #fff;
  border-radius: 8px;
  width: 420px;
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 30px;
}
.circular-progress {
  position: relative;
  height: 250px;
  width: 250px;
  background: conic-gradient(purple 3.6deg, #ededed 0deg);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.circular-progress::before{
    content: '';
    position: absolute;
    height: 210px;
    width: 210px;
    background: #fff;
    border-radius: 50%;
}
.progress-value{
    position: relative;
    font-size: 40px;
    font-weight: 600;
    color: purple;
}
.text{
    font-size: 30px;
    font-weight: 500;
    color: #606060;
}

