#message-container {
  /* font-family: Arial, sans-serif; */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  /* background-color: #f8f9fa; */
}
.success-message {
  text-align: center;
  max-width: 400px;
}
.success-message h1 {
  color: #4caf50;
  font-size: 48px;
}
.success-message p {
  color: var(--primary-color);
  font-size: 16px;
}
.back-to-home-button {
  display: inline-block;
  color: white;
  background-color: orangered; /*  #4caf50; */
  padding: 10px 20px;
  margin-top: 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.5rem;
}
