   header {
      background-color: #eb4545;
      padding: 20px 10px;
      text-align: center;
      border-bottom: 5px dashed #7e0e0e;
   }
    .menu-section {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      padding: 20px;
    }

    .item {
      background-color: #fff;
      border: 2px solid #ffffff;
      border-radius: 10px;
      width: 200px;
      text-align: center;
      padding: 10px;
      box-shadow: 2px 2px 10px #7e0e0e;
    }

    .item img {
      width: 100%;
      border-radius: 8px;
    }
    h1 {
      color: #000000;
      text-align: center;
    }

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;
}