* {
  box-sizing: border-box;
}

body {
  margin: 16px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fafafa;
  color: #212121;
  line-height: 1.5;
}

#categories {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.item h2 {
  margin-top: 0;
  font-size: 24px;
}

.item ul {
  list-style: none;
  padding: 0;
}

.item ul li {
  padding: 4px 8px;
  border: 1px solid #ddd;
  margin-bottom: 4px;
  border-radius: 4px;
}


.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
}

.gallery-item {
  width: 360px;
  height: 300px;
  object-fit: cover;
}