* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  background: #000;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.TheWholePageCenteringWrapper {
  width: min(480px, 90vw);
}

.TheBigGoalNameText {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 2.8rem;
}

.TheProgressBarOuterTrack {
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  margin-bottom: 1.4rem;
  overflow: visible;
  position: relative;
}

.TheFilledProgressBarPortion {
  height: 100%;
  width: 0%;
  background: #fff;
  border-radius: 999px;
  position: relative;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}



.TheFilledProgressBarPortion.HasSomeProgressGoingOn 

.TheAmountAndPercentRow {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.TheSavedAmountBigNumber {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}

.ThePercentageNumberText {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.04em;
}

.TheGoalRemainingSubtitleText {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
  margin-top: 0.4rem;
}