    #thermometer-container {
      width: 100px;
      height: 400px;
      border: 4px solid #555;
      border-radius: 50px;
      margin: 50px auto;
      position: relative;
      background-color: #b8b8b8;
      overflow: hidden;
    }

    #mercury {
      position: absolute;
      bottom: 0;
      width: 100%;
      height: 0;
      background: linear-gradient(to top, #7e00ff, #9f42ff);
      transition: height 2s ease-out;
    }

    #goal-label {
      text-align: center;
      font-weight: bold;
      margin-top: 20px;
    }

    .amount-raised {
      position: absolute;
      bottom: 10px;
      width: 100%;
      text-align: center;
      color: white;
      font-weight: bold;
    }

    .amount-raised2 {
      text-align: center;
      font-weight: bold;
    }