body {
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  margin: 0;
  padding: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh; /* centers vertically */
}

.container {
  max-width: 600px;
  padding: 20px;
}

h1 {
  color: #333;
  margin-bottom: 20px;
  font-size: 32px;
}

.logo {
  width: 240px;         /* adjust size as needed */
  margin: 20px 0;
}

p1 {
  display: block;       /* so it behaves like a normal paragraph */
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

a.btn {
  display: inline-block;
  padding: 12px 24px;
  text-decoration: none;
  background: #000;   /* black button */
  color: #fff;        /* white text */
  font-size: 18px;
  border-radius: 6px;
  transition: background 0.2s;
}

a.btn:hover {
  background: #333;   /* dark grey on hover */
}
