@tailwind base;
@tailwind components;
@tailwind utilities;

@import url('https://fonts.googleapis.com/css2?family=Work Sans:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Work Sans', sans-serif;
  background-image: url(/FAQ-Accordion/assets/images/background-pattern-desktop.svg);
  background-repeat: no-repeat;
  background-color: #f9f0ff;
  /* color: hsl(210, 22%, 49%); */
}

.attribution { font-size: 11px; text-align: center; }
.attribution a { color: hsl(228, 45%, 44%); }

@media (max-width: 450px) {
  body {
    background-image: url(/FAQ-Accordion/assets/images/background-pattern-mobile.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #f9f0ff;
  }
}