
body {
  font-family: Arial, sans-serif;
  background: #f4f4f9;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

h1 {
  color: #333;
}

p {
  color: #666;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #4CAF50;
  color: white;
  text-decoration: none;
  font-size: 16px;
  border-radius: 8px;
  transition: background 0.3s;
}

.btn:hover {
  background: #45a049;
}
