.gallery-container{
  position: relative;
  overflow: hidden;

  background: #000;
  width: 100%;
  height: 100%;
  padding-bottom: 5vw;
}

/* Title */
.gallery-heading{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: min(0.5rem, 4vw);
}
.gallery-heading h1{
  color: #fff;
  font-size: min(8rem, 20vw);
}

/* Selector */
.gallery-selector ul{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: min(3rem, 8vw);
}
.gallery-selector ul li a{
  color: #fff;
  font-size: min(2rem, 6vw);
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
}
.gallery-selector ul li a:hover{
  color: #000;
  background: #fff;
  border: 1px solid #fff;
  padding: 0 0.5rem;
}

.gallery-layout{
  position: relative;
  justify-content: center;
  align-items: center;
  margin-top: 1vw;
  margin: 2rem 0;

  display: grid;
  grid-template-columns: 20vw 20vw 20vw;
  column-gap: 1vw;
  row-gap: 1vw;
}
.gallery-layout > img{
  width: 20vw;
  object-fit: cover;
  object-position: center;
}