body {
  background-color: var(--quaternaryGray);
  margin: 0px;
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 14px;
  position: relative;
  height: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  color: var(--darkText);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--secondaryBlue);
  margin-top: 21px;
  letter-spacing: -0.025em;
}

h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--secondaryBlue);
  margin-top: 21px;
  margin-bottom: 10px;
  letter-spacing: -0.025em;
}

h1.home {
  font-size: 28px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--darkText);
  -webkit-box-shadow: 0 0 0px 1000px var(--white) inset;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes blinker {
  75% {
    opacity: 0.7;
  }
}
