@import url('./theme.css');

@font-face {
  font-family: 'Pacifico';
  font-style: normal;
  font-weight: 400;
  src:
    local('Pacifico Regular'),
    local('Pacifico-Regular'),
    url(https://fonts.gstatic.com/s/pacifico/v12/Q_Z9mv4hySLTMoMjnk_rCXYhjbSpvc47ee6xR_80Hnw.woff2)
      format('woff2');
  font-display: swap;
}

@media (max-width: 600px) {
  html {
    font-size: 112.5%; /* 18px */
  }
}

body {
  margin: 0;
  font-family:
    Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  line-height: 1.5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  background: var(--bg);
  color: var(--text);
}

* {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
