body {
  margin: 0;
  padding: 0;
  background: linear-gradient(rgb(45, 57, 75) 50%, rgb(82, 86, 90) 100%);
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  color: #222;
}

.message {
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  max-width: 500px;
}

h1 {
  color: #0066ff;
  margin: 0 0 1rem;
  font-weight: 600;
}

p {
  font-size: 1rem;
  font-weight: 400;
}

.btn {
  text-decoration: none;
  background-color: #0066ff;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
}