main {
  padding: 0 15px;
}
main .description {
  max-width: 750px;
  margin: 0 auto;
}
main .description h1 {
  font-weight: 400;
  text-align: center;
  margin-top: 70px;
  margin-bottom: 30px;
  font-size: 27px;
}
main .gallery {
  max-width: 1920px;
  margin: 0 auto;
}
main .gallery .container {
  max-width: 750px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
  padding: 10px;
}
main .gallery .gallery-item {
  position: relative;
  box-sizing: border-box;
  max-width: 375px;
  max-height: 500px;
}
main .gallery .gallery-item img {
  height: auto;
  width: 100%;
  max-width: 375px;
  max-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
main .gallery .gallery-item .gallery-item-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 5px;
  text-align: center;
}
main .gallery .gallery-item a {
  display: block;
  text-decoration: none;
}
main .gallery .gallery-item a:hover {
  opacity: 0.8;
}
main .gallery .gallery-item a:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
main .gallery .gallery-item a:focus img {
  border: 2px solid #fff;
}
main .gallery .gallery-item a:focus .gallery-item-title {
  background-color: rgba(0, 0, 0, 0.9);
}