@charset "UTF-8";

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

html,
body {
  font-family: var(--psx-font-sans);
  color: var(--psx-color-text);
  background: var(--psx-color-bg);
}

body {
  margin: 0;
  padding: 0;
}

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

h1,
.psx-h1 {
  margin: 0;
  font-family: var(--psx-font-display);
  font-size: var(--psx-text-2xl);
  line-height: var(--psx-line-tight);
  font-weight: 700;
}

h2,
.psx-h2 {
  margin: 0;
  font-family: var(--psx-font-display);
  font-size: var(--psx-text-xl);
  line-height: var(--psx-line-tight);
  font-weight: 700;
}

h3,
.psx-h3 {
  margin: 0;
  font-size: var(--psx-text-lg);
  line-height: var(--psx-line-tight);
  font-weight: 600;
}

p,
.psx-text {
  margin: 0;
  font-size: 13px;
  line-height: var(--psx-line-normal);
  color: rgba(0, 0, 0, 0.8);
}

.psx-muted {
  color: var(--psx-color-text-muted);
}
