:root {
  --green: #b9ab7c;
  --pink: #efd9ca;
  --white: #FFFFFF;
  --primary: var(--white);
  --secondary: var(--white);
  --content_size: 1.4rem;
  --font_heading: "AcherusGrotesque-Regular", serif;
  --font-body: "AcherusGrotesque-Regular", sans-serif;
}

* {
  padding: 0px;
  margin: 0px;
}

html {
  font-size: 16px;
}

body {
  background: var(--white);
  color: var(--green);
  font-size: var(--content_size);
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  padding: 0px;
  margin: 0px;
  line-height: 140%;
}

a {
  color: var(--secondary);
  text-decoration: none;
}

#landing {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  min-height: 100vh;
}
#landing .left {
  width: 50%;
  height: 100%;
  min-height: 100vh;
  background: var(--green);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#landing .right {
  width: 50%;
  height: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#landing .content {
  padding: 10% 5%;
}
#landing .content p {
  margin-bottom: 25px;
}
#landing .content h2 {
  margin-bottom: 40px;
  line-height: 130%;
}
#landing .content a {
  color: var(--green);
}
#landing .logo {
  width: 100%;
  max-width: 60%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  #landing {
    flex-direction: column;
    min-height: 100%;
  }
  #landing .left {
    width: 100%;
    min-height: 100%;
  }
  #landing .right {
    width: 100%;
    min-height: 100%;
  }
  #landing .logo {
    padding: 40px;
    max-width: 50%;
  }
}
@media (max-width: 400px) {
  :root {
    --content_size: 1.3rem;
  }
}/*# sourceMappingURL=styles.css.map */