* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", Times New Roman;
}
html {
  scroll-behavior: smooth;
}
#progress {
  position: fixed;
  bottom: 20px;
  right: 10px;
  height: 70px;
  width: 70px;
  display: none;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
#progress-value {
  display: block;
  height: calc(100% - 20px);
  width: calc(100% - 20px);
  background-color: #EBEBEB;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
  color: #6B4A8C;
  font-weight: bold;

}