* {
  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;
}
li {
  list-style-type: none;
}

#categories {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 280px;
}

.item {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 16px;
  background: #f6f6fe;
}

.item h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.item ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.item ul li {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 14px;
  color: #333333;
  background-color: #ffffff;
}

.gallery {
  display: flex;
  flex-wrap: wrap;

  justify-content: center;
  gap: 24px;

  list-style: none;
}

.gallery-img {
  display: block;

  width: 360px;
  height: 200px;

  object-fit: cover;
  object-position: center;
}
