.tip-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  z-index: 100;
  opacity: 0;
  /* Initially hidden */
  transition: opacity 1s ease-in-out;
  flex-direction: column;
  cursor: pointer;
}

.tip {
  font-size: var(--tip-font-size);
  margin: 0;

  max-width: 75vw;
  /* max-width: 83vw; */
  text-align: center;
  mix-blend-mode: multiply;

  color: yellow;
  color: white;

  text-shadow: #ffffff 0px 0px 5px;
  /* text-shadow: #ffff00 0px 0px 5px; */
}

.progress-container {
  width: 50%;
  height: 15px;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 100;
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  margin: 2rem 0;
  box-shadow: #fff 0px 0px 5px;
  /* box-shadow: #ff0 0px 0px 5px; */
}

.progress-bar {
  height: 100%;
  width: 100%;
  background-color: rgba(255, 255, 0, 0.8);
  border-radius: 5px;
  border-radius: 10px;
  transform-origin: left;
  transform: scaleX(1);
  transition: transform 1s linear;
  box-shadow: #ff0 0px 0px 5px;
}
