@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #7d2ae8;
}  
.container{
  display: flex;
  width: 420px;
  padding: 50px 0;
  row-gap: 30px;
  border-radius: 8px;
  background: #fff;
  flex-direction: column;
  align-items:center ;
}
.circular-progress{
  position: relative;
  height: 250px;
  width:250px;
  background: conic-gradient(#7d2ae8 3.6deg, #ededed 0deg) ;
  border-radius: 50%;
  align-items: center;
  display: flex;
  justify-content: center;
}
.circular-progress::before{
  content: "";
  position: absolute;
  height: 210px;
  width: 210px;
  border-radius: 50%;
  background-color: #fff;
}
.progress-value{
  position: relative;
  font-size: 40px;
  font-weight:600;
  color: #7d2ae8;
}
.text{
  font-size: 30px;
  font-weight: 500;
  color: #606060;
}