* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style-type: none;
}

a {
  display: block;
  cursor: pointer;
  width: 360px;
  height: 200px;
  transition: transform 250ms ease-in-out;
}

a:hover {
  transform: scale(1.05);
}

img {
  display: block;
}

.container {
  width: 1158px;
  margin: 0 auto;
  padding: 24px 15px;
}

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

.gallery-image {
  width: 360px;
  height: 200px;
}
