body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: antiquewhite;
  color: #333
}

header {
  background: black;
  color: white;
  padding: 3rem;
  text-align: center;
  text-decoration: underline;
}


nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  
}

nav ul li {
  margin: 0 1rem;
}

nav ul li a {
  color: white;
  text-decoration: none;
  
  display: block;
}

nav ul li a:hover,
nav ul li a.active {
  background: #d62828;
}

main {
  padding: 2rem;
}

.category {
  margin-bottom: 3rem;
}

.category h2 {
  border-bottom: 2px solid #d62828;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.menu-item {
  display: flex;
  margin-bottom: 1.5rem;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.menu-item img {
  width: 150px;
  height: 150px;
  object-fit: cover;
}

.details {
  padding: 1rem;
}

.order-btn {
  display: inline-block;
  background-color: #25d366;
  color: white;
  padding: 0.5rem 1rem;
  margin-top: 0.5rem;
  text-decoration: none;
  border-radius: 5px;
}

.order-btn:hover {
  background: #128c7e
}