@import url("/css/base/reset.css");
@import url("/css/layouts/landing.vw.css");
@import url("/css/layouts/query.css");
@import url("/css/components/frame-12-modal.css");
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

html {
  font-family: var(--font-family-inter);
  text-rendering: optimizeLegibility;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--background-color);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.pointer-none {
  pointer-events: none;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.justify-center {
  justify-content: center;
}

.items-center {
  align-items: center;
}

.space-between {
  justify-content: space-between;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}