:root {
  --white: #fff;
  --brown: #a3783f;
  --dark-brown: #815e32;
  --brown-30: #a3783f66;
  --brown-80: #a3783fe6;
  --brown-70: #a3783fb3;
  --black: #000;
  --black-30: #00000066;
  --black-50: #00000080;
  --black-70: #000000b3;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--white);
}
p {
  text-wrap: pretty;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}
a {
  color: var(--white);
  text-decoration: none;
}
/* =================== Content Wrapper =================== */
.content-wrapper {
  display: -ms-grid;
  display: grid;
  grid-template: subgrid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.content-wrapper h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Andika", sans-serif;
}
.content-wrapper > img {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1 / 1 / 2 / 2;
  aspect-ratio: 1 / 1;
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
  -webkit-filter: brightness(70%);
  filter: brightness(70%);
}
.content-wrapper > .content {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1 / 1 / 2 / 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 1rem;
  z-index: 2;
}
.content-wrapper > .content h2 {
  font-size: 2rem;
  text-align: center;
  z-index: 2;
}
.content-wrapper h2::after {
  content: "";
  display: block;
  width: 55px;
  height: 3px;
  background-color: var(--brown);
  margin: 1rem auto 0 auto;
}
/* ======================== Link underline =================== */
.underline {
  color: var(--white);
  text-decoration: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.underline::after {
  content: "";
  position: absolute;
  height: 2px;
  left: 0;
  bottom: 0;
  width: 0;
  background-color: var(--brown);
  border-radius: 2px;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.underline:hover:after {
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .content-wrapper > .content {
    padding: 4rem;
  }
}
/* Other */
.image-reset {
  font-style: italic;
  display: block;
  background-repeat: no-repeat;
}
.stop-scrolling {
  overflow: hidden;
}
.brightness-60 {
  -webkit-filter: brightness(60%) !important;
  filter: brightness(60%) !important;
}
/* ================= Scroll Up ============ */
.scrollup {
  display: none;
  border: 2px solid var(--brown);
  width: 3rem;
  height: 3rem;
  border-radius: 0.4rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.5rem;
  color: var(--brown);
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 2;
  background-color: transparent;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.scrollup i {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.scrollup:is(:hover, :active) {
  background-color: var(--brown);
  color: var(--white);
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.scrollup:is(:hover, :active) i {
  -webkit-transform: translateY(-0.5rem);
  -ms-transform: translateY(-0.5rem);
  transform: translateY(-0.5rem);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
/* =============== Button Style ==================== */
.btn {
    border: 1px solid var(--white);
    border-radius: 0.4rem;
    padding: 0.3rem 0.5rem;
    margin-top: 1rem;
    transform: translateY(-0.5rem);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.btn:is(:hover,:active) {
    background-color: var(--white);
    color: var(--brown);
}
.in-progress img {
  height: 100vh;
}
.in-progress .content .logo {
  width: 5rem;
  height: auto;
}
.in-progress .content h1 {
  text-align: center;
}
.in-progress .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: calc(100vh - 2rem);
}
@media screen and (min-width: 1000px) {
  .in-progress .content {
    height: calc(100vh - 10rem);
  }
}
.d-grid {
  display: -ms-grid;
  display: grid;
}