body {
  background-color: #bdbdbd;
}

.card {
  transition: transform 0.2s;
  cursor: pointer;
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  height: 180px;
  object-fit: cover;
  border-radius: 5px;
}
a:hover,
a:visited,
a:link,
a:active {
  text-decoration: none;
}

.hero {
  height: 80vh;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
}

.menu-item {
  background: white;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  transition: 0.2s;
}
