.gallery {
  padding: 20px;
  margin: 20px 0;
}

.gallery h2 {
  text-align: center;
  color: #333;
  font-size: 28px;
  margin-bottom: 20px;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.gallery-item {
  width: calc(50% - 20px);
  height: 300px;
  overflow: hidden;
  padding: 10px;
  box-sizing: border-box;
  border: 2px solid #ddd;
  background-color: #f8f8f8;
}

@media (max-width: 768px) {
  .gallery-item {
    width: calc(100% - 20px);
  }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu {
  padding: 20px;
  background: #fff;
  margin: 20px 0;
}

.menu h2 {
  text-align: center;
  color: #333;
  font-size: 28px;
  margin-bottom: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  overflow-x: auto;
  display: block;
}

@media (max-width: 768px) {
  table {
    font-size: 14px;
  }

  th, td {
    padding: 8px 5px;
  }
}

thead th {
  background: #333;
  color: #fff;
  padding: 10px;
  text-align: left;
}

tbody td {
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

tbody tr:hover {
  background: #f9f9f9;
}

tbody tr a {
  color: #333;
  text-decoration: none;
}

tbody tr a:hover {
  text-decoration: underline;
}
