*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

ul > li {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: inherit;
}

html, body {
  padding: 0;
  margin: 0;
}

body {
  background-color: #040404;
  color: #EFEFEF;
  font-family: "Kanit";
}

::selection {
  background-color: #CCAD81;
  color: #FFF;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #CCAD81;
  border-radius: 10px;
}

nav {
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  position: relative;
  padding: 1rem;
  animation: 0.5s ease-out navbarFadeIn;
}
nav ul {
  display: flex;
  gap: 0.5rem;
}
nav ul li i {
  font-size: 1.5rem;
}
nav ul li a {
  transition: 0.3s;
}
nav ul li a:hover {
  color: #CCAD81;
}
nav .logo {
  position: absolute;
  top: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Times New Roman", serif;
  font-size: 1.25rem;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-transform: uppercase;
}
.hero--title {
  font-size: 6vw;
  line-height: 0.8;
  transform: translateY(0), rotate(0);
}
.hero--title span {
  display: inline-block;
  transform-origin: top left;
}
.hero h1 {
  margin-top: 2rem;
  overflow: hidden;
}
.hero h2 {
  color: transparent;
  -webkit-text-stroke: 3px #EFEFEF;
  margin-bottom: 2rem;
  overflow: hidden;
}
.hero .gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  flex-grow: 1;
  grid-gap: 10px;
}
.hero .gallery .img-container {
  position: relative;
}
.hero .gallery .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  transition: filter 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.hero .gallery .img-container img:hover {
  transform: scale(0.99);
  filter: grayscale(1);
}

/*# sourceMappingURL=styles.css.map */
