* {
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #ffffff;
}

ul {
  list-style-type: none;
}

img {
  display: block;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.conrainer {
  max-width: 1158px;
  margin: 0 auto;
}

.gallery {
  padding: 100px 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  row-gap: 48px;
  column-gap: 24px;
  flex-wrap: wrap;
}

.gallery-item {
  width: 360px;
  height: 300px;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
  transform: scale(1.02);
}
