body {
  font-family: Arial, sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
  background: #0f172a;
  color: white;
}

.container {
  padding-top: 100px;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

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

.buttons a {
  text-decoration: none;
  padding: 12px 24px;
  margin: 10px;
  display: inline-block;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn {
  background: #4f46e5;
  color: white;
}

.btn-outline {
  border: 2px solid #4f46e5;
  color: #4f46e5;
  background: transparent;
}

.btn:hover,
.btn-outline:hover {
  background: #3b82f6;
  color: white;
}