.site-bio {
  text-align: left;
}
.custom-footer {
  text-align: center;
  font-size: 0.85em;
  color: #8c8c8c;
  margin: 3em 0 1.5em;
}
.site-footer .attribution {
  display: none;
}
/* Kimbley IT brand colours */
:root {
  --background: #141414;
  --text: #FAFAFA;
  --link: #FFD600;
  --link_visited: #FFD600;
  --button-text: #141414;
}

/* Keep the same colours when visitors use dark mode */
@media (prefers-color-scheme: dark) {
  :root {
    --background: #141414;
    --text: #FAFAFA;
    --link: #FFD600;
    --link_visited: #FFD600;
    --button-text: #141414;
  }
}
/* Load Ubuntu from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,400;0,700;1,400&display=swap');

/* Use Ubuntu everywhere */
body,
input, textarea, button, select {
  font-family: 'Ubuntu', system-ui, sans-serif;
}