body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f0f0f0;
}

#candleContainer {
  width: 50px;
  height: 300px; /* Initial height of the candle */
  background-color: #fff;
  border: 2px solid #000;
  position: relative;
  overflow: hidden;
}

#candle {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #ffd700;
}
