/* public/css/homepage.css */

body {
  margin: 0;
  font-family: 'Poppins', system-ui, sans-serif;
  background: #f8f9fa;
  color: #212529;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
}

h1 {
  font-size: 2.5rem;
  color: #0d6efd;
}

p {
  font-size: 1.1rem;
  max-width: 600px;
}

.btn {
  padding: 10px 20px;
  margin: 10px;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  background: #0d6efd;
  color: white;
  transition: background 0.2s;
}

.btn:hover {
  background: #0b5ed7;
}

footer {
  position: absolute;
  bottom: 20px;
  font-size: 0.9rem;
  color: #6c757d;
}
