body {
    font-family: 'Roboto Slab', serif;
}

[data-theme="light"],
:root:not([data-theme="dark"]) {
  --primary: #000;
  --primary-hover: #000;
  --primary-focus: rgba(0, 0, 0, 0.125);
  --primary-inverse: #FFF;
}

.internal-links, .external-links {
  text-decoration: underline !important;
}

/* Chips from */
.chip {
    /* Center the content */
    align-items: center;
    display: inline-flex;
    justify-content: center;

    /* Background color */
    background-color: #d1d5db;

    /* Rounded border */
    border-radius: 9999px;

    /* Spacing */
    padding: 0.1rem 1rem;
}