/* Small overrides on top of Tailwind */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-image:
    radial-gradient(ellipse at top, rgba(122, 31, 43, 0.035), transparent 60%),
    radial-gradient(ellipse at bottom, rgba(26, 26, 46, 0.04), transparent 60%);
}

textarea {
  font-family: 'EB Garamond', Georgia, serif;
}

/* Smoother focus rings */
input:focus,
textarea:focus,
button:focus {
  outline: none;
}

::selection {
  background: rgba(122, 31, 43, 0.18);
  color: #1a1a2e;
}
