/* ========================= RESET ========================= */

* {
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  appearance: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
}

body {
  background-color: rgb(24, 21, 19);
  font-family: "Montserrat", sans-serif;
  line-height: 1.2;
  overflow-x: hidden;
}

a {
  color: white;
}

ul {
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

textarea {
  resize: none;
}

small {
  text-align: center;
  color: var(--color-white-tp);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 1.5px;
  transform: scaleY(1.1);
}

small a {
  color: var(--color-white-tp);
}

small a:hover {
  color: white;
}

/* ========================= GENERAL ========================= */

main {
  color: rgb(255, 255, 255);
}

.main-section-one {
  min-height: calc(100vh - 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
}

.main-section-two {
  min-height: 500px;
  background-color: rgb(245, 234, 255);
  color: rgb(24, 21, 19);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
}

.section-one-container {
  width: 85%;
}

.section-one-title {
  font-size: 35px;
  font-weight: 700;
  font-family: "Syncopate", sans-serif;
  letter-spacing: 3px;
  margin-bottom: 40px;
  z-index: 1;
}

.section-two-title {
  font-size: 35px;
  letter-spacing: 8px;
  font-family: "Allerta Stencil", sans-serif;
  margin-bottom: 60px;
}

.section-one-content {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 5px;
}

/* ========================= UTILS ========================= */

.transform-y {
  transform: scaleY(1.3);
}

.slide-in {
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}

.slide-in.active {
  transform: translateX(0%);
  opacity: 1;
}

.section-hr {
  background: rgb(0, 0, 0);
  width: 80%;
  height: 1px;
  margin: 25px 0 30px;
  border: none;
}

/* ========================= INDEX ========================= */

.index-background {
  background-image: url("/assets/img/ybsm-background_01.webp");
  background-size: cover;
  background-position: center;
  background-color: rgb(0, 0, 0);
}

.index-two-background {
  background-image: url("/assets/img/ybsm-background_02.webp");
  background-size: cover;
  background-position: center;
  background-color: rgb(0, 0, 0);
}

.commitment-list li {
  margin: 40px 0;
  letter-spacing: 6px;
  font-size: 20px;
}
