/* style.css */

body {
  background: #f5f5f5; /* Light, soft background */
  color: #333; /* Dark text for readability */
  font-family: 'Helvetica Neue', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

h1 {
  text-align: center;
  margin: 40px 0;
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
}

ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1000px;
  gap: 25px;
}

ul li {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  width: 220px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

ul li:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

ul li a {
  text-decoration: none;
  color: black; /* Softer, more inviting color */
  font-size: 1.1rem;
  font-weight: 500;
  display: block;
}

ul li a:hover {
  color: red;
}
