*,
*::before,
*::after {
  box-sizing: border-box;
}
ul,
ol {
  padding: 0;
}
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}
html {
  scroll-behavior: smooth;
  height: 100%;
}
body {
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}
ul,
ol {
  list-style: none;
}
a:not([class]) {
  text-decoration-skip-ink: auto;
}
img,
picture,
video {
  max-width: 100%;
  display: block;
}
article > * + * {
  margin-top: 1em;
}
input,
button,
textarea,
select {
  font: inherit;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.flow > * + * {
  margin-top: var(--flow-space, 1.5em);
}
a {
  color: currentColor;
  text-decoration: none;
  display: inline-block;
}
a:hover {
  text-decoration: none;
}
:focus-visible {
  outline: 2px dotted;
  outline-offset: 0.25rem;
}
@font-face {
  font-family: "Graphik Regular";
  src: url("/assets/Graphik-Regular-Web.woff2") format("woff2");
  font-display: swap;
}
.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1100px;
}
svg.icon {
  display: block;
  height: 1em;
  width: 1em;
}
body {
  font-family: "Graphik Regular", sans-serif;
  line-height: 1.65;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
:root {
  --accent: #2d9cdb;
  --grey: #444;
  --bg: white;
  --fg: black;
  --bg2: white;
  --stroke-color: #ddd;
  --date-color: rgba(0, 0, 0, 0.65);
  --sharp-color: #000;
  --logo-color: #000;
  --hov: blue;
  --lineColor: #cbcbcb;
  --font-size-sm: clamp(0.8rem, 0.17vw + 0.76rem, 0.89rem);
  --font-size-base: clamp(1rem, 0.34vw + 0.91rem, 1.19rem);
  --font-size-md: clamp(1.25rem, 0.61vw + 1.1rem, 1.58rem);
  --font-size-lg: clamp(1.56rem, 1vw + 1.31rem, 2.11rem);
  --font-size-xl: clamp(1.95rem, 1.56vw + 1.56rem, 2.81rem);
  --font-size-xxl: clamp(2.44rem, 2.38vw + 1.85rem, 3.75rem);
  --font-size-xxxl: clamp(3.05rem, 3.54vw + 2.17rem, 5rem);
}
body.dark {
  --bg: #212121;
  --fg: #ccc;
  --bg2: #2b2b2b;
  --stroke-color: #555;
  --date-color: white;
  --sharp-color: #fff;
  --logo-color: #fff;
  --hov: white;
  --lineColor: #7f7f7f;
}
blockquote {
  margin: 16px 0;
  padding: 1em;
  background-color: rgba(255, 182, 193, 0.5215686275);
  color: #000;
}
body.dark blockquote {
  background-color: gray;
  color: #fff;
}
body {
  background-color: var(--bg);
  color: var(--fg);
  display: flex;
  flex-direction: column;
}
main {
  flex: 1;
}
.contact {
  max-width: 1100px;
  margin: 32px auto;
  padding: 0 1rem;
}
@media (max-width: 768px) {
  .contact {
    max-width: 800px;
    padding: 0 2rem;
  }
}
@media (max-width: 640px) {
  .contact {
    max-width: 480px;
  }
}
.contact a {
  color: purple;
  border-bottom: 0.5px solid gray;
}
.contact p {
  font-size: 1.15em;
}
.contact .details {
  --flow-space: 0.5rem;
}
.contact .email {
  margin-top: 1rem;
}
body.dark .contact a {
  color: #ff75ff;
}
