body {
  background: #fff;
  align-content: center;
  margin: 0px;
  padding: 0px;
  text-align: justify;
}

#header {
  margin: 0px;
  background-color: white;
  z-index: 1;
  align-content: center;
}

#logo_img {
  margin-top: 23px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#navbar {
  width: 100%;
  margin: 10px auto;
  text-align: center;
  height: auto;
}

#navbar ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap; /* Optional for responsiveness */
  gap: 30px; /* Nice spacing between items */
}

#navbar ul li {
  width: auto; /* Removes fixed width that causes layout breaks */
}

#navbar ul li a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: black;
  font-family: 'Josefin Slab', serif;
  font-size: 20px;
}

#navbar ul li a:hover {
  text-decoration: underline;
}


#masonbutton {display: flex;
  justify-content: center;
  text-align:center;
  
}

#copy {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 10px;
  color: #969696;
  font-weight: lighter;
  text-align: center;
  position: relative;
  bottom: -150px;
}

* {
  box-sizing: border-box;
}

#buttonGroup {
  padding: 10px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}


#buttonGroup li {
  list-style: none;
}

#buttonGroup li a {
  padding: 8px 16px;
  color: #333;
  font-size: 16px;
  font-family: 'Josefin Slab', serif;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

#buttonGroup li a:hover {
  text-decoration: underline;
}

#buttonGroup li.is-active a {
  font-weight: bold;
  color: #000;
}

.is-active{
  text-decoration: underline;
}

.grid {
  background: #fff;
}

.grid:after {
  content: "";
  display: block;
  clear: both;
}

.grid-sizer,
.grid-item {
  width: 33.33%;
}

.grid-item {
  /* float: left; */
}
.grid-item:hover {
  cursor: pointer;
}

.grid-item img {
  display: block;
  max-width: 100%;
  border: 10px solid white;
}
@media screen and (max-width: 414px) {
  .grid-item img {
    border: 5px solid white;
  }
}

.grid-item.grid-item__expanded {
  width: 66.66%;
  z-index: 2;
}

