/** Get yer admin font on! **/
@font-face {
  font-family: "Iosevka";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("https://cdn.kevquirk.com/iosevka/webfont/subset-regular.woff2") format("woff2"),
       url("https://cdn.kevquirk.com/iosevka/webfont/subset-regular.woff") format("woff");
}

@font-face {
  font-family: "Iosevka";
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url("https://cdn.kevquirk.com/iosevka/webfont/subset-bold.woff2") format("woff2"),
       url("https://cdn.kevquirk.com/iosevka/webfont/subset-bold.woff") format("woff");
}

@font-face {
  font-family: "Iosevka";
  font-style: italic;
  font-display: swap;
  font-weight: 400;
  src: url("https://cdn.kevquirk.com/iosevka/webfont/subset-italic.woff2") format("woff2"),
       url("https://cdn.kevquirk.com/iosevka/webfont/subset-italic.woff") format("woff");
}

@font-face {
  font-family: "Iosevka";
  font-style: italic;
  font-display: swap;
  font-weight: 700;
  src: url("https://cdn.kevquirk.com/iosevka/webfont/subset-bolditalic.woff2") format("woff2"),
       url("https://cdn.kevquirk.com/iosevka/webfont/subset-bolditalic.woff") format("woff");
}

:root {
  --font-stack: "Iosevka", ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, Consolas, "DejaVu Sans Mono", monospace;
  --grey: #333;
  --blue: #0d47a1;
  --red: #af2e1b;
  --green: #1b5e20;
  --bg: #fafafa;
}

body {
  font-size: 1.2rem;
  font-family: var(--font-stack);
  display: block;
  margin: 0 auto;
  max-width: 45rem;
  color: var(--grey);
  background: var(--bg);
}

header {
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--grey);
    text-align: center;
}

header h1 {
  margin: 2rem 0 3rem 0;
  font-size: 2.4rem;
}

footer {
    text-align: center;
    font-size: 1rem;
    margin-top: 4rem;
    border-top: 1px solid var(--grey);
}

/* Basic element formatting */
p {
    margin: 1.5rem 0;
    line-height: 1.4;
}

a, a:visited {
    color: var(--blue);
}

a:hover {
    text-decoration: none;
}

/* Format logos */
.logo {
  --accent: var(--grey);
  color: var(--accent);
  border: 3px solid currentColor;
  font-weight: bold;
}

.pure,
.service {
  padding: 0 0.5rem;
}

.service {
  background: var(--accent);
  color: var(--bg);
}

.logo.grey {
  --accent: var(--grey);
}

.logo.blue {
  --accent: var(--blue);
}

.logo.red {
  --accent: var(--red);
}

.logo.green {
  --accent: var(--green);
}

/* Nav */
.site-nav ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.site-nav li {
    display: inline-block;
    margin-right: 1rem;
}

.site-nav li:last-child {
    margin-right: 0;
}

.site-nav a {
    color: inherit;
    text-decoration: none;
    font-size: 1.5rem;
}

.site-nav a:hover {
  text-decoration: none;
}

.site-nav a:hover .pure,
.site-nav a:focus-visible .pure {
  background: var(--accent);
  color: var(--bg);
}