/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
  background-color: black;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-weight: bold;
}
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  color: #c385c5;
}
ul[role="list"],
ol[role="list"] {
  list-style: none;
}
html:focus-within {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}
a:not([class]) {
  text-decoration-skip-ink: auto;
}
img,
picture {
  max-width: 100%;
  display: block;
}
input,
button,
textarea,
select {
  font: inherit;
}
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-family: "Noto Sans", sans-serif;
}
ul {
	padding: 50px;
  list-style: none;
}

.row {
  display: flex;
  flex-wrap: wrap;
}
.img-glry {
  padding: 100px 7px;
}
.img-glry .filter-buttons {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
.img-glry .filter-buttons ul {
  text-align: center;
  padding: 0;
}
.img-glry .filter-buttons ul li {
  display: inline-block;
  margin: 0 8px;
  text-transform: uppercase;
  cursor: pointer;
  padding-bottom: 0px;
}
.img-glry .filter-buttons ul li.All {
  color: #c53aca;
  border-bottom: 2px solid #c53aca;
}
.img-glry .gallery {
  flex: 0 0 100%;
  max-width: 100%;
  margin-left: 2%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  font-family: "Montserrat", sans-serif;
}
.img-glry .gallery .item {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  position: relative;
  padding: 8px;
}
.img-glry .gallery .item.inner {
  position: relative;
}
.img-glry .gallery .item img {
  width: 100%;
  display: block;
}
.heading {
  text-align: center;
  text-transform: capitalize;
  font-size: 4rem;
  color: #c53aca ;
}
.inner {
  background-color: black;
  border-radius: 10px;
  transition: transform 200ms ease-in;
}
.inner:hover {
  border: 1px dashed black;
  transform: translateY(-10px);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.inner ul {
  margin-left: 5px;
  font-size: 1.2rem;
  display: flex;
  flex-wrap: wrap;
}
.inner ul li {
  padding-left: 12px;
  padding-right: 12px;
}
.inner ul li:hover {
  text-decoration: underline;
  cursor: pointer;
}
