
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
  text-align: center;
}

.container {
  max-width: 600px;
  padding: 20px;
}

h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.button {
  display: inline-block;
  padding: 12px 25px;
  font-size: 1rem;
  text-decoration: none;
  background-color: #000;
  color: #fff;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.button:hover {
  background-color: #333;
}
