/* public/css/style.css - Simple centered layout with background */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f4f9;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

nav {
  margin: 20px 0;
  font-size: 1.2rem;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #0066cc;
}

nav a:hover {
  text-decoration: underline;
}

main {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  max-width: 600px;
  width: 100%;
}

h1 {
  color: #0066cc;
}
