/* styles.css */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
  padding: 2rem 1rem;
  text-align: center;
}

.header-content h1 {
  margin: 0;
  font-size: 2.5rem;
}

.header-content p {
  font-size: 1.25rem;
  margin-top: 0.5rem;
}

main {
  flex: 1;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  width: 100%;
  max-width: 800px;
}

.menu button {
  background: #fff;
  border: 2px solid #2575fc;
  border-radius: 8px;
  padding: 1rem;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.menu button:hover {
  transform: translateY(-5px);
  background: #e0e0e0;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #fff;
  border-top: 1px solid #ddd;
}
