@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Exo+2:wght@400;700&display=swap");
@import url("https://ka-f.fontawesome.com/releases/v5.15.4/css/free.min.css?token=df9e12ef71");
:root {
  --fontFamily-sans: Exo\ 2,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue;
  --fontFamily-mono:Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace;
  --font-body: var(--fontFamily-sans);
  --font-heading: var(--fontFamily-sans);
  --color-text: #222;
  --color-text-light: #888;
  --color-heading-black: black;
  --color-accent: #d1dce5;
  --color-background: #fff;
  --color-light: #888;
  --color-very-light: #aaa;
  --color-primary: #fc2f00;
  --color-secondary: #c200fb;
  --color-tertiary: #ec0868;
  --color-quaternary: #ec7d10;
  --color-quinary: #ffbc0a;
  --color-warning: #f54542;
}

.theme-rainbow {
  --color-background: #060913;
  --color-text: #fff;
  --color-primary: #1585b1;
  --color-secondary: #8729bc;
  --color-tertiary: #821054;
  --color-quaternary: #b61d15;
  --color-quinary: #e0aa0c;
}

.theme-dark {
  --color-background: #292b28;
  --color-text: #fff;
  --color-background-contrast: #b4aaac;
  --color-background-contrast-text: #292b28;
  --color-primary: #E37281;
  --color-secondary: #E1DD8F;
  --color-tertiary: #B3B7EE;
  --color-quaternary: #FBF9FF;
  --color-quinary: #6E44FF;
  --color-heading: var(--color-secondary);
  --color-accent: #484c4f;
  --color-warning: #602222;
}
.theme-dark a[href^=http]::after {
  filter: invert(1);
}

.theme-light {
  --color-background: #fff;
  --color-text: #111;
  --color-background-contrast: #aaafb4;
  --color-background-contrast-text: #292b28;
  --color-light: #888;
  --color-very-light: #aaa;
  --color-primary: #fc2f00;
  --color-secondary: #c200fb;
  --color-tertiary: #ec0868;
  --color-quaternary: #ec7d10;
  --color-quinary: #ffbc0a;
  --color-warning: #e8c2c2;
}

.gradiented-text, .hello-page h1 span, a {
  background: linear-gradient(to top right, var(--color-primary), var(--color-secondary));
  background-clip: text;
  --webkit-background-clip: text;
  color: transparent;
}

@keyframes pop-in {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.5);
  }
  75% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes wobble-in {
  0% {
    opacity: 0;
    transform: rotate(0deg);
  }
  10% {
    opacity: 1;
    transform: rotate(-10deg);
  }
  20% {
    opacity: 1;
    transform: rotate(10deg);
  }
  30% {
    opacity: 1;
    transform: rotate(-7deg);
  }
  40% {
    opacity: 1;
    transform: rotate(7deg);
  }
  50% {
    opacity: 1;
    transform: rotate(-5deg);
  }
  60% {
    opacity: 1;
    transform: rotate(5deg);
  }
  70% {
    opacity: 1;
    transform: rotate(-3deg);
  }
  80% {
    opacity: 1;
    transform: rotate(3deg);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg);
  }
}
html {
  background-color: var(--color-background);
  color: var(--color-text);
}

body {
  margin: 0;
  padding: 0;
}

.wobble-in, .hello-page h1 span {
  animation: wobble-in 0.75s;
  display: inline-block;
}

.pop-in {
  animation: pop-in 0.5s;
  display: inline-block;
}

main {
  padding-bottom: 2em;
}

h2, h3, h4, h5, h6 {
  margin-top: 0.5em;
  font-weight: bold;
}

h1 {
  color: var(--color-primary);
  text-align: center;
}

.no-scroll, body.sidebar-overlay {
  overflow: hidden;
}

img {
  image-rendering: -webkit-optimize-contrast;
}

table {
  width: 100%;
}

ol {
  margin-left: 1rem;
}

a {
  font-weight: bold;
  transition: color 0.2s ease-in-out;
}
a:hover {
  color: var(--color-secondary);
}

.width-5 {
  width: 5%;
}

.width-10 {
  width: 10%;
}

.width-15 {
  width: 15%;
}

.width-20 {
  width: 20%;
}

.width-25 {
  width: 25%;
}

.width-30 {
  width: 30%;
}

.width-35 {
  width: 35%;
}

.width-40 {
  width: 40%;
}

.width-45 {
  width: 45%;
}

.width-50 {
  width: 50%;
}

.width-55 {
  width: 55%;
}

.width-60 {
  width: 60%;
}

.width-65 {
  width: 65%;
}

.width-70 {
  width: 70%;
}

.width-75 {
  width: 75%;
}

.width-80 {
  width: 80%;
}

.width-85 {
  width: 85%;
}

.width-90 {
  width: 90%;
}

.width-95 {
  width: 95%;
}

.width-100 {
  width: 100%;
}

.small {
  font-size: small;
}

.smaller {
  font-size: smaller;
}

.large {
  font-size: large;
}

.larger {
  font-size: larger;
}

.center {
  margin-left: auto;
  margin-right: auto;
}

.top-buttons {
  position: fixed;
  z-index: 2;
  left: 0.5em;
  top: 0.25em;
  padding: 0 var(--spacing-5);
  display: grid;
  grid-template-columns: auto auto;
  align-content: space-between;
  justify-content: space-between;
  width: calc(100% - 1em);
  transition: all 0.25s ease-in-out;
  border-radius: 0.25em;
  border-color: transparent;
  border-width: 2px;
  border-style: solid;
  background-color: transparent;
}

@media screen and (max-width: 684px) {
  .scroll-20:not(.sidebar-overlay) .top-buttons {
    border-color: var(--color-primary);
    background-color: var(--color-background);
  }
}
.top-buttons > button {
  cursor: pointer;
  height: 32px;
  width: 32px;
  padding: 0;
  margin: 0;
  float: right;
  border: none;
  background-color: transparent;
}
.top-buttons > button svg {
  width: 100%;
  height: 100%;
  transition: transform 0.1s ease-in-out;
}

.theme-dark .top-buttons svg {
  color: #fff;
}

.theme-light .top-buttons svg {
  color: var(--color-text);
}
.theme-light .top-buttons #nightModeToggle svg {
  transform: rotate(180deg);
}

.sidebar {
  text-align: center;
}
.sidebar nav {
  display: inline-flex;
  flex-direction: column;
  margin-bottom: 1em;
}
.sidebar nav ul {
  list-style: none;
}
.sidebar nav a {
  flex: 1 1 auto;
  color: var(--color-primary);
  font-weight: normal;
  text-decoration: none;
  text-align: center;
}
.sidebar nav a.active {
  text-decoration: underline;
  text-decoration-color: var(--color-primary);
  position: relative;
}
.sidebar nav a.active::before, .sidebar nav a.active::after {
  position: absolute;
  font-weight: bold;
}
.sidebar nav a.active::before {
  content: "› ";
  left: -1em;
}
.sidebar nav a.active::after {
  content: " ‹";
  right: -1em;
}
.sidebar .web {
  text-align: center;
}
.sidebar .web a {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  font-size: 1.25rem;
  padding: 0.05rem;
  width: 40px;
  height: 40px;
  display: inline-block;
}
.sidebar .web a svg {
  color: var(--color-tertiary);
}
.sidebar .web a i {
  line-height: 10px;
  font-size: 20px;
  vertical-align: middle;
  padding-left: 1px;
}

.sidebar-overlay #hamburger svg {
  transform: rotate(180deg);
}

.sidebar {
  position: fixed;
  background-color: var(--color-background);
  z-index: 1;
  height: 100%;
  overflow: auto;
  left: 0;
  top: 0;
  transition: margin-left 0.25s ease-in-out;
  margin-left: -100%;
  width: 80%;
  border-right: 1px solid var(--color-light);
}

.force-wide .sidebar {
  width: 400px;
}

.sidebar.show {
  margin-left: 0;
  padding-top: 0.5em;
  display: block;
}

@media screen and (min-width: 685px) {
  :root {
    --split: 75%;
  }
  html:not(.force-wide) main {
    float: left;
    width: var(--split);
    margin-left: 1.25rem;
    padding-left: 1rem;
    border-left: 1px solid var(--color-very-light);
  }
  html:not(.force-wide) .sidebar {
    float: left;
    width: calc(100% - var(--split) - 1.25rem);
    position: relative;
    display: block;
    margin-left: 0;
    border: none;
  }
  html:not(.force-wide) .top-buttons {
    display: block;
    left: auto;
    right: 0.5em;
    width: auto;
  }
  html:not(.force-wide) #hamburger {
    display: none;
  }
}
@keyframes toggle {
  from {
    opacity: 100%;
  }
  to {
    opacity: 0;
  }
}
.terminal {
  cursor: default;
  font-family: var(--fontFamily-mono);
}
.terminal .toggle {
  animation-name: toggle;
  animation-duration: 1s;
  animation-timing-function: steps(2, jump-none);
  animation-iteration-count: infinite;
  animation-play-state: running;
}

.bio {
  font-size: 16px;
  display: block;
  color: var(--color-light);
  margin-bottom: 0;
}
.bio h1, .bio h2 {
  font-size: 110%;
  margin: 0;
  margin-top: 1em;
  padding: 0;
  line-height: 100%;
}
.bio img {
  display: block;
  margin: 1em auto;
  max-width: 75px;
}
.bio p {
  margin-top: 1em;
}

footer {
  text-align: center;
  color: var(--color-light);
  font-size: 90%;
}

.hello-page {
  text-align: center;
  color: var(--color-light);
}
.hello-page h1 {
  margin-top: 0em;
}
.hello-page h2 {
  color: var(--color-tertiary);
  font-size: 250%;
  font-weight: bold;
  text-align: center;
  padding: 0.25em 0;
}
.hello-page h3 {
  text-align: center;
  color: var(--color-primary);
}
.hello-page h2, .hello-page h3 {
  margin-top: 20px;
}
.hello-page .lang {
  font-weight: bold;
  font-size: 110%;
  color: var(--color-light);
}
.hello-page .larger {
  font-size: larger;
}
.hello-page .monty {
  max-width: 75%;
  margin: 1em auto 0 auto;
  border-radius: 2em;
  display: block;
}

.markdown-content p {
  line-height: 1.625rem;
  margin-bottom: 1.625rem;
}
.markdown-content img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.margin-bottom {
  margin-bottom: 1.625rem;
}

code[class*=language-].prism {
  white-space: normal;
}

.cv {
  font-size: 1rem;
}
.cv .email {
  text-align: right;
}
.cv article {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 50px;
}
.cv h2 {
  border-bottom: 1px solid var(--color-primary);
  color: var(--color-primary);
}
.cv h3 {
  margin-top: 0.5em;
}
.cv ul, .cv ol {
  padding-left: 0;
  list-style-position: outside;
  margin-left: 1em;
}
.cv hr {
  border: 0;
  border-bottom: 1px dashed #ccc;
  background: #999;
}
.cv .contact {
  display: block;
}
.cv .duration {
  font-style: italic;
  float: right;
}
.cv .title {
  font-weight: bold;
}
.cv .company {
  font-size: 100%;
}
.cv #head {
  background: #3e3e3e;
  color: #fff;
  margin-bottom: 1em;
}
.cv #head .sub {
  font-size: larger;
}
.cv #head .inner {
  width: 80%;
  max-width: 800px;
  margin: 0 auto;
}
.cv #skills p {
  padding: 0;
  margin: 0;
}
.cv .history .left {
  flex-grow: 0;
  flex-basis: 200px;
}
.cv .history .left span {
  display: block;
  white-space: nowrap;
}
.cv .history .row:not(:last-child) {
  border-bottom: 1px solid #888;
  margin-bottom: 1em;
}
.cv .history.row p:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}
.cv .history ul,
.cv #other ul {
  list-style-position: outside;
  margin-left: 1em;
}
.cv #other ul {
  margin-left: 2em;
}
.cv #education p {
  margin-top: 1rem;
}
.cv #education .left {
  flex-grow: 0;
  flex-basis: 200px;
}
.cv #education .classification, .cv #education .location {
  display: block;
}
@media screen and (max-width: 500px) {
  .cv .col {
    flex-basis: 100%;
  }
}

ol.posts {
  list-style: none;
}

.recently-updated-summary-container {
  margin-top: 2em;
  border-top: 1px solid var(--color-accent);
}
.recently-updated-summary-container .post header {
  display: flex;
  margin: 0;
}
.recently-updated-summary-container .post h2 {
  font-size: 100%;
  padding: 0;
  margin: 0;
  margin-left: 1em;
  line-height: var(--lineHeight-normal);
}
.recently-updated-summary-container .post .date {
  display: block;
  font-size: 100%;
  line-height: var(--lineHeight-normal);
  min-width: 150px;
  text-align: right;
}
.recently-updated-summary-container .post-list-item {
  margin: 0;
}

.blog-post .no-header-count h2, .blog-post .no-header-count h3, .blog-post .no-header-count h4, .blog-post .no-header-count h5, .blog-post .no-header-count h6 {
  counter-increment: none;
  counter-set: none;
}
.blog-post .no-header-count h2::before, .blog-post .no-header-count h3::before, .blog-post .no-header-count h4::before, .blog-post .no-header-count h5::before, .blog-post .no-header-count h6::before {
  content: "";
  margin: 0;
}
.blog-post h2 {
  font-size: 115%;
  line-height: 200%;
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-light);
  counter-increment: h2-section;
  counter-set: h3-section h4-section h5-section h6-section;
}
.blog-post h2::before {
  color: var(--color-light);
  content: counter(h2-section);
  margin-right: 1em;
}
.blog-post h3 {
  font-size: 110%;
  color: var(--color-secondary);
  margin-left: 1em;
  counter-increment: h3-section;
  counter-set: h4-section h5-section h6-section;
}
.blog-post h3::before {
  color: var(--color-light);
  content: counter(h2-section) "." counter(h3-section);
  margin-right: 1em;
  font-style: italic;
}
.blog-post h4 {
  font-size: 105%;
  color: var(--color-tertiary);
  margin-left: 2em;
  counter-increment: h4-section;
  counter-set: h5-section h6-section;
}
.blog-post h4::before {
  color: var(--color-light);
  content: counter(h2-section) "." counter(h3-section) "." counter(h4-section);
  margin-right: 1em;
  font-style: italic;
}
.blog-post h5 {
  font-size: 105%;
  color: var(--color-tertiary);
  margin-left: 2em;
  counter-increment: h5-section;
  counter-set: h6-section;
}
.blog-post h5::before {
  color: var(--color-light);
  content: counter(h2-section) "." counter(h3-section) "." counter(h4-section) "." counteer(h5-section);
  margin-right: 1em;
  font-style: italic;
}
.blog-post h6 {
  font-size: 105%;
  color: var(--color-tertiary);
  margin-left: 2em;
  counter-increment: h6-section;
}
.blog-post h6::before {
  color: var(--color-light);
  content: counter(h2-section) "." counter(h3-section) "." counter(h4-section) "." counteer(h5-section) "." counteer(h6-section);
  margin-right: 1em;
  font-style: italic;
}
.blog-post a[href^=http]::after {
  content: "";
  width: 11px;
  height: 11px;
  margin-left: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8.636 3.5a.5.5 0 0 0-.5-.5H1.5A1.5 1.5 0 0 0 0 4.5v10A1.5 1.5 0 0 0 1.5 16h10a1.5 1.5 0 0 0 1.5-1.5V7.864a.5.5 0 0 0-1 0V14.5a.5.5 0 0 1-.5.5h-10a.5.5 0 0 1-.5-.5v-10a.5.5 0 0 1 .5-.5h6.636a.5.5 0 0 0 .5-.5z'/%3E%3Cpath fill-rule='evenodd' d='M16 .5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0 0 1h3.793L6.146 9.146a.5.5 0 1 0 .708.708L15 1.707V5.5a.5.5 0 0 0 1 0v-5z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
}
.blog-post .date-wrapper {
  font-size: 90%;
  text-align: right;
}
.blog-post .date-wrapper span {
  font-weight: bold;
}
.blog-post ul {
  padding-left: 1em;
}
.blog-post pre.raw {
  max-width: 100%;
  overflow: auto;
}
.blog-post .contents {
  border-top: 1px solid var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  margin-bottom: 1.5em;
}
.blog-post .contents::before {
  content: "Contents";
  font-weight: bold;
  font-size: 110%;
}
.blog-post .contents ul {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
.blog-post .contents li {
  counter-increment: l1-section;
  counter-set: l2-section;
}
.blog-post .contents li::before {
  content: counter(l1-section);
  margin-right: 1em;
  display: inline-block;
  min-width: 1em;
}
.blog-post .contents li li {
  counter-increment: l2-section;
  counter-set: l3-section;
}
.blog-post .contents li li::before {
  content: counter(l1-section) "." counter(l2-section);
  min-width: 1.75em;
}
.blog-post .contents li li li {
  counter-increment: l3-section;
  counter-set: l4-section;
}
.blog-post .contents li li li::before {
  content: counter(l1-section) "." counter(l2-section) "." counter(l3-section);
  min-width: 2.5em;
}
.blog-post .contents li li li li {
  counter-increment: l4-section;
  counter-set: l5-section;
}
.blog-post .contents li li li li::before {
  content: counter(l1-section) "." counter(l2-section) "." counter(l3-section) "." counter(l4-section);
  min-width: 3.25em;
}
.blog-post .contents li li li li li {
  counter-increment: l5-section;
  counter-set: l6-section;
}
.blog-post .contents li li li li li::before {
  content: counter(l1-section) "." counter(l2-section) "." counter(l3-section) "." counter(l4-section) "." counter(l4-section);
  min-width: 4em;
}
.blog-post .contents li li li li li li {
  counter-increment: l6-section;
}
.blog-post .contents li li li li li li::before {
  content: counter(l1-section) "." counter(l2-section) "." counter(l3-section) "." counter(l4-section) "." counter(l4-section) "." counter(l5-section);
  min-width: 4.75em;
}
.blog-post .chart-container {
  background: #fff;
  padding: 1em;
  border-radius: 1em;
}
.blog-post .chart-container + .chart-container {
  margin-top: 1em;
}
.blog-post .data-table > table,
.blog-post table.data-table {
  border-bottom: 1px solid var(--color-accent);
}
.blog-post .data-table > table td.numeric,
.blog-post table.data-table td.numeric {
  text-align: right;
}
.blog-post .data-table > table td,
.blog-post table.data-table td {
  border-width: 0;
  border-style: solid;
  border-color: var(--color-accent);
  border-right-width: 1px;
  padding: 0 0.25em;
}
.blog-post .data-table > table td:last-child,
.blog-post table.data-table td:last-child {
  border-right-width: 0;
}
.blog-post .data-table > table tbody tr:nth-child(2n),
.blog-post table.data-table tbody tr:nth-child(2n) {
  background-color: var(--color-accent);
}
.blog-post .warning {
  border: 1px solid var(--color-primary);
  background-color: var(--color-warning);
  padding: 1em;
  text-align: center;
  font-weight: bold;
}
.blog-post .warning p {
  margin: 0;
}
.blog-post .mono {
  font-family: var(--fontFamily-mono);
}
.blog-post .floating-container::after {
  clear: both;
  display: block;
  content: "";
}
.blog-post .with-floating {
  float: left;
  width: 55%;
}
.blog-post aside.floating {
  float: right;
  width: 40%;
  margin-left: 1rem;
  background-color: var(--color-background-contrast);
  color: var(--color-background-contrast-text);
  border: 1px solid var(--color-background-contrast-text);
  border-radius: 0.25rem;
  padding: 1rem;
}
.blog-post video {
  max-width: 100%;
  display: block;
}
.blog-post .center {
  margin-left: auto;
  margin-right: auto;
}
.blog-post .grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.25em;
}
.blog-post .grid-auto > * {
  width: 100%;
}
.blog-post .col-2 {
  grid-template-columns: repeat(2, minmax(160px, 1fr));
}
.blog-post figure {
  margin: 0;
  padding: 0;
}
.blog-post figure img {
  width: 100%;
}
.blog-post figcaption {
  display: block;
  text-align: center;
}
@media screen and (max-width: 684px) {
  .blog-post aside.floating {
    float: none;
    width: 80%;
    margin: 0 auto;
  }
  .blog-post .with-floating {
    float: none;
    width: 100%;
  }
}

/*# sourceMappingURL=main.css.map */
