.TextMessage {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10%;
  max-width: 80%;
  width: 100%; /* Allows the element to scale down if needed */
  height: 48px;
  padding: 8px;
  background: rgba(205, 204, 232, 0.8);
  border: 4px solid;
  color: var(--menu-font-color);
  text-align: center; /* Center-aligns text */
}

.TextMessage_p {
  margin: 0;
  font-size: 16px; /* Increase font size */
}

.TextMessage span {
  opacity: 0;
}
.TextMessage span.revealed {
  opacity: 1;
}
.TextMessage_button {
  margin: 0;
  font-size: 12px;
  padding: 0;
  -webkit-appearance: none;
  background: none;
  border: 0;
  font-family: inherit;
  cursor: pointer;
  position: absolute;
  right: 2px;
  bottom: 0;
}