body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: linear-gradient(#5e5c64, #deddda);
  /*background: linear-gradient(135deg, #5e5c64, #deddda);*/
  color: #333;
}

.container {
  text-align: center;
  background: #fff;
  padding: 20px 40px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.message-box h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #333;
}

.message-box p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.redirect-link {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1.2em;
  color: #fff;
  background-color: #007BFF;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.redirect-link:hover {
  background-color: #0056b3;
}
