header {
  background-color: #e4cd00;
  color: rgb(0, 0, 0);
  padding: 20px 10px;
  text-align: center;
}
.menu-section {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      padding: 20px;
    }

    .item {
      background-color: #fff;
      border: 2px solid  #e4cd00;
      border-radius: 10px;
      width: 200px;
      text-align: center;
      padding: 10px;
      box-shadow: 2px 2px 10px rgb(255, 255, 255);
    }

    .item img {
      width: 100%;
      border-radius: 8px;
    }

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}