html,
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  padding: 0;
  margin: 0;
  /* overscroll-behavior-x: none; */
}

body {
  font-size: 0.7em;
  background-color: #f1efed;
  cursor: url("/cursor.svg"), auto;
  overflow-y: scroll;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

button,
select,
textarea {
  appearance: none;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 500;
}


/* @media (max-width: 767px) {
  body {
    font-size: 0.65em;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  body {
    font-size: 0.75em;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  body {
    font-size: 0.85em;
  }
}

@media (min-width: 1200px) {
  body {
    font-size: 0.75em;
  }
}

@media (min-width: 1500px) {
  body {
    font-size: 0.85em;
  }
}

@media (min-width: 1800px) {
  body {
    font-size: 1em;
  }
} */

* {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

blockquote {
  margin: 0;
  border-left: 4px solid #535557;
  color: #535557;
  padding-left: 10px;
  font-style: italic;
  font-weight: 900;
  line-height: 160%;
}

.disableScrollBar {
  overflow: hidden;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: background-color 9999s ease-in-out 0s;
}

/* Homepage error fallback responsive styles */
.homepage-error-fallback {
  color: #b00;
  background: #fff0f0;
  border: 1px solid #fbb;
  border-radius: 8px;
  padding: 32px;
  margin: 40px auto;
  max-width: 600px;
  text-align: center;
  font-size: 20px;
}

@media (max-width: 768px) {
  .homepage-error-fallback {
    padding: 16px;
    margin: 20px auto;
    font-size: 16px;
  }
}