@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  list-style: none;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
}

:root {
  --accent: #896845;
  --accent-bright: #D15C3C;
  --ass: #777777;
  --white: #ffffff;
  --black: #000000;
}

body .main_content {
  width: 100%;
  min-height: 50vh;
  padding: 30px 120px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
body .main_content .header_texts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
body .main_content .header_texts .header {
  font-size: 2rem;
  position: relative;
}
body .main_content .header_texts .header::before {
  content: "";
  width: 40px;
  height: 3px;
  background: linear-gradient(to right, var(--accent), var(--accent-bright));
  position: absolute;
  top: 0%;
}
body .main_content .header_texts .justifier {
  text-align: center;
}

@media screen and (max-width: 999px) {
  body .main_content {
    padding: 30px 30px;
  }
}/*# sourceMappingURL=about.css.map */