@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap");
*, ::after, ::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
  background: 0 0;
  text-decoration: none;
  outline: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  font-style: inherit;
  color: inherit;
  border: 0;
  list-style: none;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga"; }

:active, :visited {
  color: inherit; }

@font-face {
  font-family: "Iowan BT";
  font-style: normal;
  font-stretch: normal;
  font-display: swap;
  font-weight: 700;
  src: url(/assets/css/fonts/IowanOldStyleBTBold.woff2) format("woff2"); }

@font-face {
  font-family: "Iowan BT";
  font-style: italic;
  font-stretch: normal;
  font-display: swap;
  font-weight: 400;
  src: url(/assets/css/fonts/IowanOldStyleBTItalic.woff2) format("woff2"); }

@font-face {
  font-family: "Iowan BT";
  font-style: normal;
  font-stretch: normal;
  font-display: swap;
  font-weight: 400;
  src: url(/assets/css/fonts/IowanOldStyleBTRoman.woff2) format("woff2"); }

:root {
  --text: hsl(0, 0%, 16%);
  --title: hsl(0, 0%, 26%);
  --link: #FFF7B1;
  --link-hover: #FFEE50;
  --lines: hsl(0, 0%, 94%);
  --bg-alt: hsl(0, 0%, 90%);
  --bg-hover: hsl(0, 0%, 98%);
  --bg: hsl(0, 0%, 100%);
  --bgl: #F7F7F7;
  --h: #FFEC3D66;
  --hl: #FFEC3DE6;
  --t: #444;
  --tm: #888;
  --tl: #F2F2F2;
  --font-family: "Iowan Old Style", "Iowan", "Iowan BT", "Palatino Linotype", "URW Palladio L", P052, serif;
  --font-family-sans: system-ui, sans-serif;
  --font-family-mono: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, Consolas, "DejaVu Sans Mono", monospace;
  --font-style: normal;
  --ls: 9rem;
  --text-width: 36rem;
  --cards-width: 27rem;
  --media-width: 54rem;
  --type-base: clamp(14px, 0.5vw + 12px, 22px);
  --type-xs: calc(var(--type-base) * 0.75);
  --type-s: calc(var(--type-base) * 0.9);
  --type-m: calc(var(--type-base) * 1.2);
  --type-l: calc(var(--type-base) * 1.4);
  --type-xl: calc(var(--type-base) * 1.6);
  --font-line-height: clamp(26px, 0.78vw + 22.488px, 42px);
  background: var(--bg);
  color: var(--text);
  scroll-padding-top: 1.5rem; }

@-webkit-keyframes gradient {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 50%; } }

@keyframes gradient {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 50%; } }

body {
  padding: 5rem 1rem 1.5rem;
  background: linear-gradient(-45deg, #fff4f9, #f4f9ff, #f9fff4);
  background-size: 400% 400%;
  -webkit-animation: gradient 30s ease infinite;
          animation: gradient 30s ease infinite; }

*, ::after, ::before {
  font-size: var(--type-base);
  font-family: var(--font-family);
  font-style: var(--font-style); }

blockquote, details, figure, form, h1, h2, h3, h4, h5, h6, hr, nav, ol, p, pre, ul, div.paragraph {
  margin-right: auto;
  margin-left: auto;
  max-width: var(--text-width); }

h1, h2, h3, h4, h5, h6 {
  color: var(--title);
  font-weight: 700; }

main h2, main h3, pre {
  margin-bottom: 1rem; }

h1 {
  font-size: var(--type-xl); }

h2 {
  font-size: var(--type-l); }

h3, h4, h5, h6 {
  font-size: var(--type-m);
  line-height: 1rem; }

a {
  font-weight: inherit;
  line-height: inherit; }

:is(p, figcaption, li, td, small) a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  -webkit-transition: -webkit-text-decoration .3s;
  transition: -webkit-text-decoration .3s;
  transition: text-decoration .3s;
  transition: text-decoration .3s, -webkit-text-decoration .3s; }

:is(p, figcaption, li, td, small) a:hover {
  text-decoration-color: var(--link-hover); }

h1 > a {
  text-decoration: none; }

h1, h2, h3, h4, h5, h6 {
  line-height: 1.5; }

.main h1, .main h2, .main h3, .main h4, .main h5, .main h6 {
  margin-bottom: 1em; }

.main h1:not(:first-child), .main h2:not(:first-child), .main h3:not(:first-child), .main h4:not(:first-child), .main h5:not(:first-child), .main h6:not(:first-child) {
  margin-top: 3em; }

h2, h3, .container hr {
  text-align: center; }

p + p {
  margin-top: .5rem; }

.container hr {
  display: block;
  border: 0;
  margin-top: 2rem;
  margin-bottom: 2rem;
  width: var(--ls); }

.container hr::before, .main hr::before {
  content: "✽  ✽  ✽";
  white-space: pre;
  opacity: .25;
  text-align: center; }

blockquote {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding: 1rem;
  background: var(--bg-alt); }

blockquote p {
  text-indent: 0; }

blockquote small {
  text-align: right;
  font-size: var(--type-xs);
  line-height: 1.8;
  font-family: var(--font-family-sans);
  display: block; }

blockquote.guest {
  background: var(--bg-alt);
  padding: 1rem;
  border-radius: 5px; }

blockquote.guest b, blockquote.guest em, blockquote.guest strong {
  font-style: normal; }

b, strong {
  font-weight: 700; }

.current, blockquote p, em, i {
  font-style: italic; }

a, em, strong {
  font-size: inherit; }

code {
  font-family: var(--font-family-mono);
  background: var(--tl); }

dl:not(:first-child), ol:not(:first-child), pre:not(:first-child), ul:not(:first-child) {
  margin-top: 1rem; }

pre code {
  font-family: var(--font-family-mono);
  background: var(--bg-alt);
  padding: .75rem;
  display: block;
  overflow-x: auto;
  white-space: pre; }

li code, p code {
  display: inline-block;
  text-indent: 0;
  padding: 0 .25rem; }

dl:not(:last-child), ol:not(:last-child), ul:not(:last-child) {
  margin-bottom: 1rem; }

dl li, ol li, ul li {
  list-style-position: inside; }

ol li {
  list-style-type: decimal; }

ul li {
  list-style-type: none; }

.job {
  margin-top: 2rem;
  margin-bottom: 1rem; }

del {
  text-decoration: line-through;
  text-decoration-color: var(--t);
  text-decoration-thickness: .2em; }

table {
  margin: 1rem auto;
  width: 100%;
  max-width: var(--media-width);
  border-collapse: collapse; }

thead {
  background: var(--bg-alt); }

table, tbody, thead {
  border: 1px solid var(--lines); }

header.header {
  text-align: center; }

th {
  font-family: var(--font-family-sans); }

input[type=text], td, textarea, th {
  font-size: var(--type-s);
  border: 1px solid var(--lines); }

td, th {
  text-align: left;
  padding: 0 .25rem; }

form {
  margin-top: 2rem;
  margin-bottom: 2rem; }

label {
  display: block;
  margin-bottom: 1rem; }

label span {
  font-size: var(--type-m);
  font-weight: 700; }

input[type=text], textarea {
  padding: .15rem .5rem;
  border-radius: 5px;
  display: block;
  width: 100%;
  margin-top: .25rem;
  resize: none; }

input[type=text]:focus, textarea:focus {
  outline: 2px solid var(--link); }

input[type=text]:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
  opacity: .2; }

input[type=text]:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  opacity: .2; }

input[type=text]:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
  opacity: .2; }

input[type=text]:focus::-ms-input-placeholder, textarea:focus::-ms-input-placeholder {
  opacity: .2; }

input[type=text]:focus::placeholder, textarea:focus::placeholder {
  opacity: .2; }

label small {
  font-size: var(--type-s);
  line-height: 1.8;
  display: block;
  font-style: italic; }

label[for=website] {
  position: fixed;
  top: -999999px;
  left: -999999px; }

input[type=submit] {
  font-size: var(--type-xs);
  text-align: center;
  border: 1px solid var(--lines);
  padding: 0 1rem;
  border-radius: 5px;
  line-height: 3;
  font-family: var(--font-family-sans);
  -webkit-transition: background .2s;
  transition: background .2s;
  display: block;
  margin-top: 1rem;
  cursor: pointer;
  margin-left: auto; }

input[type=submit]:hover, summary:hover {
  background: var(--bg-hover); }

input[type=submit]:focus {
  outline: 2px solid var(--link); }

details {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 1px solid var(--lines);
  border-radius: 5px; }

details div {
  padding: .5rem;
  border-top: 1px solid var(--lines); }

details :is(ol, ul) li {
  list-style-position: inside; }

details summary::-webkit-details-marker {
  display: none; }

summary {
  text-align: left;
  -webkit-transition: background .2s;
  transition: background .2s;
  display: block;
  cursor: pointer;
  font-style: italic;
  padding: .5rem; }

summary::after {
  content: "▸";
  float: right;
  opacity: .25; }

details[open] summary::after {
  content: "▾"; }

[data-template=with] .m-m {
  padding: 1rem;
  background: var(--bg-alt); }

[data-template=with] .img {
  -webkit-box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
          box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2); }

.main {
  margin-bottom: 3rem; }

nav:last-child {
  margin-bottom: 7rem; }

nav h2 {
  margin-bottom: 1em; }

nav > h3 {
  display: flex;
  align-items: center;
  margin-top: 2em;
  margin-bottom: .5em; }

h3 span {
  font-size: calc(var(--fs) * var(--sm));
  line-height: 1rem; }

h3 span:last-child {
  margin-left: auto; }

nav > a {
  -webkit-transition: color .3s ease-out;
  transition: color .3s ease-out;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr auto;
  grid-template-columns: auto 1fr auto;
  margin-bottom: 4px; }

nav > a:hover {
  color: var(--tm); }

nav a p {
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%; }

nav hr {
  margin: 0 0 .3rem;
  -ms-grid-row-align: end;
      align-self: end;
  height: 1px;
  border: 0;
  border-bottom: 1px dotted var(--t);
  opacity: .25;
  min-width: 1rem;
  width: 100%; }

footer, section {
  text-align: center; }

section li {
  text-align: left; }

section, .contact {
  margin-bottom: 3rem; }

section h2 {
  font-size: var(--type-m);
  margin-bottom: 1em;
  margin-top: 1em; }

footer a, section p {
  font-size: var(--type-s); }

section p.date {
  font-style: italic; }

section.next p {
  line-height: 1.5rem; }

p.job-title {
  font-weight: bold;
  margin-top: 1.2em; }

dl {
  max-width: var(--text-width);
  font-family: Arial, sans-serif; }

.job h3 {
  margin-bottom: 0.3em; }

dl dt {
  font-weight: bold;
  color: #333;
  margin-top: 10px; }

dl dd {
  margin-left: 15px;
  color: #555;
  font-style: italic; }

body.cv {
  background: #fff;
  -webkit-animation: none;
          animation: none;
  padding: 2rem 1rem; }

body.cv .main {
  color: #222;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
  margin: 0 auto;
  max-width: 48rem; }

body.cv *,
body.cv ::after,
body.cv ::before {
  font-family: Arial, Helvetica, sans-serif; }

body.cv blockquote,
body.cv details,
body.cv figure,
body.cv form,
body.cv h1,
body.cv h2,
body.cv h3,
body.cv h4,
body.cv h5,
body.cv h6,
body.cv hr,
body.cv nav,
body.cv ol,
body.cv p,
body.cv pre,
body.cv ul,
body.cv div.paragraph {
  max-width: none; }

body.cv header.header,
body.cv footer,
body.cv section,
body.cv h2,
body.cv h3 {
  text-align: left; }

body.cv header.header {
  border-bottom: 1px solid #ccc;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem; }

body.cv h1 {
  color: #111;
  font-size: 2rem;
  margin-bottom: 0.1rem; }

body.cv header.header h2 {
  color: #444;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  margin-top: 0; }

body.cv section,
body.cv .contact {
  margin-bottom: 1.25rem; }

body.cv section h2 {
  border-bottom: 1px solid #ddd;
  color: #111;
  font-size: 1rem;
  letter-spacing: .03em;
  margin: 0 0 .5rem;
  padding-bottom: .15rem;
  text-transform: uppercase; }

body.cv .job {
  margin: 0 0 1rem; }

body.cv .job h3 {
  color: #111;
  font-size: 1rem;
  line-height: 1.3;
  margin: 0; }

body.cv footer a,
body.cv section p {
  font-size: 1rem; }

body.cv section p.date,
body.cv p.job-title {
  display: inline;
  font-size: .95rem;
  margin: 0; }

body.cv section p.date::after {
  content: " | ";
  font-style: normal; }

body.cv p.job-title + p {
  margin-top: .25rem; }

body.cv dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: -webkit-max-content 1fr;
  -ms-grid-columns: max-content 1fr;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  -webkit-column-gap: .75rem;
     -moz-column-gap: .75rem;
          column-gap: .75rem;
  row-gap: .2rem;
  margin: 0;
  max-width: none; }

body.cv dl dt {
  color: #222;
  margin: 0; }

body.cv dl dd {
  color: #444;
  font-style: normal;
  margin: 0; }

body.cv hr {
  border: 0;
  border-top: 1px solid #ddd;
  margin: 1rem 0; }

body.cv hr::before {
  content: none; }

@media print {
  @page {
    size: A4;
    margin: 11mm 12mm; }
  :root {
    --type-base: 9.2pt;
    --font-line-height: 1.28; }
  html,
  body.cv {
    background: #fff; }
  body.cv {
    padding: 0; }
  body.cv .main {
    font-size: 9.2pt;
    line-height: 1.28;
    max-width: none; }
  body.cv h1 {
    font-size: 18pt;
    line-height: 1.1; }
  body.cv header.header h2 {
    font-size: 9.5pt;
    margin-bottom: 5pt; }
  body.cv header.header {
    margin-bottom: 8pt;
    padding-bottom: 5pt; }
  body.cv header.header dl {
    -ms-grid-columns: -webkit-max-content 1fr -webkit-max-content 1fr;
    -ms-grid-columns: max-content 1fr max-content 1fr;
    grid-template-columns: -webkit-max-content 1fr -webkit-max-content 1fr;
    grid-template-columns: max-content 1fr max-content 1fr; }
  body.cv section {
    -webkit-column-break-inside: auto;
       -moz-column-break-inside: auto;
            break-inside: auto;
    margin-bottom: 8pt; }
  body.cv section h2 {
    font-size: 9pt;
    margin-bottom: 4pt; }
  body.cv section p {
    font-size: 9.2pt;
    line-height: 1.28; }
  body.cv p + p {
    margin-top: 3pt; }
  body.cv .job {
    -webkit-column-break-inside: avoid;
       -moz-column-break-inside: avoid;
            break-inside: avoid;
    margin-bottom: 7pt; }
  body.cv .job h3 {
    font-size: 9.8pt; }
  body.cv section p.date,
  body.cv p.job-title,
  body.cv dl {
    font-size: 8.8pt; }
  body.cv .job .paragraph {
    display: none; }
  body.cv hr {
    margin: 6pt 0; } }

footer {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  gap: .3rem; }

footer a {
  font-family: var(--font-family-sans);
  text-decoration: underline;
  text-decoration-color: var(--bg);
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: .5em;
  text-underline-offset: -.25em;
  -webkit-transition: -webkit-text-decoration .3s;
  transition: -webkit-text-decoration .3s;
  transition: text-decoration .3s;
  transition: text-decoration .3s, -webkit-text-decoration .3s; }

footer a:hover {
  text-decoration-color: var(--link-hover); }

.supporters {
  margin-right: auto;
  margin-left: auto;
  max-width: var(--cards-width);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: .5rem; }

.supporters li {
  list-style: none;
  position: relative; }

.supporters li span {
  cursor: not-allowed; }

.supporters li a:nth-child(1), .supporters li span {
  font-size: var(--type-s);
  display: block;
  border: 1px solid var(--lines);
  border-radius: 5px;
  padding: .25rem .5rem;
  line-height: 1rem; }

.supporters li a:nth-child(2) {
  font-size: var(--type-xs);
  font-family: var(--font-family-sans);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  padding: .25rem .5rem;
  border: 1px solid var(--lines);
  border-radius: 0 5px 5px 0;
  background: var(--bg); }

.supporters li a {
  text-decoration: none;
  -webkit-transition-property: background;
  transition-property: background; }

.supporters li a:hover {
  background: var(--bg-hover); }

.project-container {
  justify-content: center;
  align-items: center;
  /* background-color: #f9f9f9; */
  font-family: 'Roboto', sans-serif;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px; }

.project-card {
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 8px;
  padding: 16px;
  width: 500px;
  -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  background-color: white; }

.project-logo {
  width: 100px;
  height: auto;
  border-radius: 8px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0; }

.project-info {
  flex-grow: 1;
  border-left: solid 1px #bbb;
  padding-left: 10px; }

.project-info h3 {
  text-align: left;
  color: #555; }

.project-title {
  font-size: 1.2em;
  margin: 0;
  font-weight: 700; }

.repo-link {
  font-size: 0.8em;
  color: #0073e6;
  text-decoration: none;
  display: block;
  margin-top: 4px; }

.project-desc {
  font-size: 0.8em;
  line-height: 150%;
  color: #555;
  font-weight: 400;
  margin-left: 0;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
  margin-top: 4px; }

.project-links {
  margin-top: 8px; }

.project-links a {
  text-decoration: none;
  color: #0073e6;
  font-weight: 600; }

.screenshot-thumbnail {
  display: block;
  width: 100px;
  height: auto;
  border-radius: 4px;
  margin-top: 8px; }

@media (min-width: 600px) {
  dl li, ol li, ul li {
    list-style-position: outside; }
  .m-o {
    margin-top: 3rem; }
  [data-template=with] .m-m {
    padding: 2rem; }
  main {
    margin-bottom: 5rem; }
  .m-o, section {
    margin-bottom: 3rem; }
  footer {
    margin-top: 5rem; } }

@media (min-width: 450px) {
  .supporters {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr; } }

@media (min-width: 800px) {
  .supporters {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr; } }
