@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&family=Truculenta:opsz,wght@12..72,100..900&display=swap");
@layer reset, defaults, theme, layouts, patterns, components, utilities, overrides;
@layer theme {
  .site--header .site--title {
    font-family: Truculenta, "serif";
    font-size: 36px;
    font-weight: 900;
    line-height: 1em;
  }
  h1 {
    font-family: Truculenta, "serif";
    font-size: 96px;
    font-weight: 900;
    line-height: 92px;
  }
  h2 {
    font-family: Truculenta, "serif";
    font-size: 48px;
    font-weight: 900;
    line-height: 1em;
  }
  h3 {
    font-family: Raleway, "sans-serif";
    font-size: 36px;
    font-weight: 900;
    line-height: 1em;
  }
  h4 {
    font-family: Raleway, "sans-serif";
    font-size: 32px;
    font-weight: 900;
    line-height: 1em;
  }
  .job--title h3, body .page--subtitle,
  body .post--subtitle, .card.highlight-card .card--title, h5 {
    font-family: Raleway, "sans-serif";
    font-size: 24px;
    font-weight: 900;
    line-height: 32px;
  }
  .job--title h4, .job--title h5, .site--header .site--nav a, .site--header .site--intro h1, body {
    font-family: Raleway, "sans-serif";
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
  }
  article.portfolio .portfolio--tasks li, .site--header .site--intro h3, .card .card--title, .card.highlight-card .card--content {
    font-family: Raleway, "sans-serif";
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
  }
  .site--footer, .site--header .site--intro p, body .post--meta, #theme-toggle label, .card .card--meta, .card .card--content {
    font-family: Raleway, "sans-serif";
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
  }
}
@layer reset {
  body,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  blockquote,
  pre,
  hr,
  dl,
  dd,
  ol,
  ul,
  figure {
    margin: 0;
    padding: 0;
  }
  /**
  * Set `margin-bottom` to maintain vertical rhythm
  */
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  blockquote,
  pre,
  ul,
  ol,
  dl,
  figure {
    margin-bottom: 1lh;
  }
  /**
  * `main` element
  */
  main {
    display: block; /* Default value of `display` of `main` element is 'inline' in IE 11. */
  }
  /**
  * Images
  */
  img {
    max-width: 100%;
    vertical-align: middle;
  }
  /**
  * Figures
  */
  figure > img {
    display: block;
  }
  /**
  * Lists
  */
  ul,
  ol {
    margin-left: 1em;
  }
  li > ul,
  li > ol {
    margin-bottom: 0;
  }
  /**
  * Headings
  */
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0 0 1lh;
  }
}
@layer defaults {
  body {
    padding: 64px 64px;
    font-kerning: normal;
    box-sizing: border-box;
    cursor: default;
  }
  strong {
    font-weight: 700;
  }
  /**
  * Inline content
  */
  abbr {
    cursor: help;
  }
  /**
  * Wrapper
  */
  .wrapper {
    max-width: calc(1600px - 24px * 2);
    margin-right: auto;
    margin-left: auto;
    padding-right: 48px;
    padding-left: 48px;
  }
  @media screen and (max-width: 940px) {
    .wrapper {
      max-width: calc(940px - (24px));
      padding-right: 24px;
      padding-left: 24px;
    }
  }
  /**
  * Clearfix
  */
  .wrapper:after {
    content: "";
    display: table;
    clear: both;
  }
}
@layer theme {
  html {
    color-scheme: light dark;
  }
  body {
    color: light-dark(#333, #CCC);
    border: 1px solid light-dark(#3F8600, #57A90F);
    border-width: 24px 0;
    background-color: light-dark(#EEE, #333);
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    transition: background-color ease-in-out 150ms;
  }
  /**
  * Horizontal rule
  */
  hr {
    margin: 24px 0;
    border: none;
    border-top: 1px solid light-dark(#CCC, #666);
  }
  /**
  * Links
  */
  a {
    position: relative;
    display: inline-block;
    padding: 0;
    color: light-dark(#57A90F, #76CD26);
    font-weight: bold;
    text-decoration: none;
    text-shadow: 2px 2px 1px light-dark(#EEE, #333);
  }
  a:visited {
    font-weight: normal;
  }
  a:hover {
    color: light-dark(#3F8600, #ACEA74);
    text-decoration: underline;
  }
  h1 {
    margin-bottom: 16px;
  }
  /**
  * Blockquotes
  */
  blockquote {
    color: #333;
    border-left: 4px solid light-dark(#CCC, #666);
    padding-left: 12px;
    font-size: 20px;
    letter-spacing: -1px;
    font-style: italic;
  }
  blockquote > :last-child {
    margin-bottom: 0;
  }
  /**
  * Code formatting
  */
  pre,
  code {
    font-size: 14px;
    color: #76CD26;
    border-radius: 4px;
    background-color: #666;
  }
  code {
    padding: 1px 5px;
  }
  pre {
    margin: 24px -24px;
    padding: 24px;
    border-radius: 16px;
    overflow-x: auto;
  }
  pre > code {
    border: 0;
    padding-right: 0;
    padding-left: 0;
  }
  abbr {
    text-decoration: none;
    outline: 1px dotted #57A90F;
    outline-offset: 2px;
    background-color: rgba(87, 169, 15, 0.3);
  }
  /**
  * Tables
  */
  table {
    margin-bottom: 24px;
    width: 100%;
    text-align: left;
    color: light-dark(#333, #CCC);
    border-collapse: collapse;
    border: 1px solid light-dark(#CCC, #666);
  }
  table tr:nth-child(even) {
    background-color: light-dark(rgb(224.4, 224.4, 224.4), rgb(71.4, 71.4, 71.4));
  }
  table th,
  table td {
    padding: 8px 12px;
  }
  table th {
    background-color: light-dark(rgb(224.4, 224.4, 224.4), rgb(71.4, 71.4, 71.4));
    border: 1px solid light-dark(#CCC, #666);
    border-bottom-color: light-dark(#CCC, #666);
  }
  table td {
    border: 1px solid light-dark(#CCC, #666);
  }
  /***
  * Images
  */
  img.hero {
    margin-bottom: 32px;
  }
}
@layer theme {
  .site--wrapper {
    display: grid;
    gap: 64px;
    grid-template-columns: 240px 1fr;
    grid-template-rows: [row1-start] auto [row1-end row2-start] 1fr [row2-end];
    grid-template-areas: "site-header content" "footer footer";
    max-width: 1440px;
    margin: 0 auto;
  }
  .site--wrapper .site--header {
    grid-area: site-header;
  }
  .site--wrapper .site--content {
    grid-area: content;
    justify-self: end;
  }
  .site--wrapper .site--content > * {
    max-width: 1200px;
  }
  .site--wrapper .site--footer {
    grid-area: footer;
  }
  @media screen and (max-width: 940px) {
    .site--wrapper {
      grid-template-areas: "site-header" "content" "footer";
      grid-template-columns: 1fr;
      gap: 32px;
      padding: 32px;
    }
  }
  article.post {
    display: grid;
    column-gap: 64px;
    grid-template-columns: 3fr 1fr;
    grid-template-rows: [row1-start] auto [row1-end row2-start] 1fr [row2-end];
    grid-template-areas: "header aside" "content aside";
  }
  article.post .post--header {
    grid-area: header;
  }
  article.post .post--content {
    grid-area: content;
  }
  article.post .post--secondary {
    grid-area: aside;
  }
  @media screen and (max-width: 1200px) {
    .site--wrapper {
      grid-template-rows: [row1-start] auto [row1-end row2-start] 1fr [row2-end];
    }
    article.post {
      grid-template-columns: 1fr;
      grid-template-areas: "header" "content" "aside";
    }
  }
}
@layer patterns {
  .card {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin: 0;
    padding-bottom: 24px;
    min-width: 240px;
    max-width: 480px;
    border-bottom: 1px solid light-dark(#CCC, #666);
  }
  .card > * {
    flex: 0;
  }
  .card > p {
    flex: 1;
  }
  .card:hover {
    text-decoration: none;
  }
  .card .card--meta {
    padding-block-end: 16px;
    color: light-dark(#333, #EEE);
  }
  .card .card--title {
    margin-bottom: 8px;
    font-weight: 900;
  }
  .card .card--content {
    flex: 1;
    max-width: 850px;
    color: light-dark(#333, #EEE);
  }
  .card .card--content nav a {
    padding-block-end: 4px;
  }
  .card.highlight-card {
    flex: unset;
    margin-top: 32px;
    width: 100%;
    max-width: unset;
  }
  .card.highlight-card .card--title {
    margin-bottom: 16px;
  }
  .card.highlight-card .card--content {
    line-height: 28px;
  }
  .card--grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(10px, 1fr));
    gap: 32px;
    margin: 0 0 32px;
  }
  .card--list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
    margin: 0;
  }
  @media screen and (max-width: 1200px) {
    .card--grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  @media screen and (max-width: 940px) {
    .card--grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media screen and (max-width: 600px) {
    .card--grid {
      display: block;
    }
    .card--grid .card {
      margin-block-end: 40px;
    }
  }
}
@layer components {
  #theme-toggle {
    display: flex;
    gap: 16px;
  }
  #theme-toggle input[type=radio] {
    position: absolute;
    top: -999px;
    left: -999px;
    opacity: 0;
  }
  #theme-toggle label {
    display: block;
    color: light-dark(#57A90F, #76CD26);
    text-transform: uppercase;
    cursor: pointer;
  }
  #theme-toggle label:hover {
    color: light-dark(#3F8600, #ACEA74);
  }
}
@layer theme {
  body .post--meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    padding: 16px 0;
    border-bottom: 1px solid light-dark(#CCC, #666);
  }
  body .post--tags {
    display: flex;
    gap: 16px;
  }
  body .post--content {
    margin-bottom: 32px;
    border-bottom: 1px solid light-dark(#CCC, #666);
  }
  body .hire-me {
    margin-block-start: 64px;
    padding-block: 32px;
    border-block: 1px solid light-dark(#CCC, #666);
  }
  body .hire-me p:last-of-type {
    margin-block-end: 0;
  }
}
@layer theme {
  .site--header {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 24px;
    justify-content: space-between;
    align-content: flex-start;
  }
  .site--header .site--title {
    color: light-dark(#333, #CCC);
  }
  .site--header .site--nav {
    display: flex;
    justify-content: space-between;
    gap: 16px;
  }
  .site--header .social-media-list {
    list-style: none;
    margin-left: 0;
  }
  .site--header .social-media-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    margin: 0;
  }
  .site--header .social-media-list a span {
    display: none;
  }
  .site--header .social-media-list .svg-icon {
    display: block;
    width: 16px;
    height: 16px;
    fill: light-dark(#999, #999);
  }
  .site--header .social-media-list a:hover .svg-icon {
    fill: light-dark(#57A90F, #8FDC4A);
    scale: 1.2;
  }
  .site--header .site--intro {
    margin-top: 96px;
    color: #999;
    transform: rotate(-7deg);
  }
  .site--header .site--intro h1 {
    font-weight: 900;
    margin-bottom: 8px;
  }
  .site--header .site--intro h3 {
    font-weight: 900;
    text-align: center;
  }
  .site--header .site--intro p {
    margin-bottom: 8px;
  }
  @media screen and (max-width: 940px) {
    .site--header .site--intro {
      display: none;
    }
  }
}
@layer theme {
  .site--footer {
    display: flex;
    gap: 64px;
    justify-content: center;
    text-align: center;
  }
}
@layer layouts {
  /**
  * CV Column layout
  */
  article.cv {
    display: grid;
    column-gap: 64px;
    grid-template-columns: 3fr 1fr;
    grid-template-rows: [row1-start] auto [row1-end row2-start] auto [row2-end row3-start] auto [row3-end row4-start] 1fr [row4-end row5-start];
    grid-template-areas: "header skills" "profile skills" "experience skills" "experience tools" "experience tools";
    max-width: 1200px;
  }
  article.cv .cv--header {
    grid-area: header;
  }
  article.cv .cv--profile {
    grid-area: profile;
  }
  article.cv .cv--skills {
    grid-area: skills;
  }
  article.cv .cv--tools {
    grid-area: tools;
  }
  article.cv .cv--profile {
    padding-bottom: 24px;
  }
  article.cv .cv--experience h2 {
    margin: 0;
  }
  article.cv .cv--skills,
  article.cv .cv--tools {
    margin-bottom: 64px;
  }
  article.cv .cv--skills ul,
  article.cv .cv--tools ul {
    list-style: none;
    margin: 0;
  }
  article.cv .cv--skills li,
  article.cv .cv--tools li {
    padding: 16px 0;
  }
  article.cv .cv--experience {
    grid-area: experience;
  }
  @media screen and (max-width: 1200px) {
    article.cv {
      grid-template-columns: unset;
      grid-template-rows: [row1-start] auto [row1-end row2-start] auto [row2-end row3-start] auto [row3-end row4-start] 1fr;
      grid-template-areas: "header" "profile" "skills" "tools" "experience";
    }
  }
  /* ------------------- */
  .job--summary {
    padding: 0;
    border-top: 1px solid #CCC;
    transform: all ease-in 1s;
  }
  .job--summary:first-of-type {
    padding-top: 24px;
    border: none;
  }
  .job--summary:focus {
    outline: none;
  }
  .job--summary[open] > .job--title::after {
    content: "-";
    grid-area: marker;
    color: light-dark(#999, #999);
  }
  .job--title {
    display: grid;
    justify-content: stretch;
    grid-template-columns: 5fr 2fr auto;
    grid-template-areas: "role role marker" "company company duration";
    padding: 24px 0;
    cursor: pointer;
  }
  .job--title::after {
    content: "+";
    grid-area: marker;
    padding: 0 8px;
    font-size: 24px;
    font-weight: bold;
    text-align: right;
    color: light-dark(#999, #999);
  }
  .job--title h3 {
    grid-area: role;
    margin: 0;
  }
  .job--title h4 {
    grid-area: company;
    margin: 0;
    font-weight: normal;
  }
  .job--title h5 {
    grid-area: duration;
    margin: 0;
    font-weight: normal;
  }
  .job--title:hover {
    color: #57A90F !important;
  }
  .job--title:hover::after {
    color: #57A90F !important;
  }
  @media screen and (max-width: 600px) {
    .job--title {
      grid-template-areas: "role role role marker" "company company duration marker";
    }
  }
  .job--details {
    padding: 24px 0 64px;
    border-top: 1px solid #CCC;
  }
  .job--details ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .job--details li:not(:last-child) {
    padding: 0 0 24px;
  }
  .job--details a {
    display: inline;
  }
  /* ------------------- */
  @media screen and (max-width: 1200px) {
    .career-highlights {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 1.6rem 1.6rem;
    }
    .career-highlights--stat {
      text-align: center;
    }
    .job--summary::-webkit-details-marker {
      color: transparent;
      font-size: 0;
    }
  }
}
@layer layouts {
  article.portfolio {
    /** Media Queries **/
  }
  article.portfolio .portfolio--header {
    container-name: portfolio;
  }
  article.portfolio .portfolio--content {
    display: grid;
    column-gap: 24px;
    grid-template-columns: repeat(9, 1fr);
  }
  article.portfolio .portfolio--content section {
    display: grid;
    grid-template-columns: subgrid;
    grid-column: 1/10;
  }
  article.portfolio h2 {
    grid-column: 1/10;
    margin-block: 0;
  }
  article.portfolio .portfolio--group {
    display: grid;
    grid-template-columns: subgrid;
    grid-column: 1/10;
  }
  article.portfolio .portfolio--group-title {
    grid-column: 1/10;
    grid-row: 1/2;
    padding-block-start: 64px;
  }
  article.portfolio .portfolio--tasks {
    grid-column: 1/4;
  }
  article.portfolio .portfolio--tasks li {
    padding-block-end: 24px;
  }
  article.portfolio .portfolio--gallery {
    display: grid;
    gap: 24px;
    grid-column: 4/10;
    grid-template-columns: subgrid;
  }
  article.portfolio .portfolio--gallery img {
    border: 1px solid light-dark(#CCC, #666);
    border-radius: 8px;
    overflow: hidden;
  }
  article.portfolio .portfolio--gallery div:nth-child(odd) {
    grid-column: 1/4;
  }
  article.portfolio .portfolio--gallery div:nth-child(even) {
    grid-column: 4/7;
  }
  article.portfolio .portfolio--group--ds-learningpool .portfolio--gallery div {
    display: block;
    grid-column: 1/7;
  }
  article.portfolio .portfolio--group--ds-learningpool .portfolio--gallery img {
    border: none;
  }
  @media (max-width: 940px) {
    article.portfolio .portfolio--content {
      grid-template-columns: 1fr;
    }
    article.portfolio .portfolio--content section {
      grid-column: 1/1;
    }
  }
  @media (max-width: 1200px) {
    article.portfolio .portfolio--gallery {
      display: flex;
      flex-direction: column;
    }
  }
}
@layer utilities {
  /**
  * Syntax highlighting styles
  */
  .highlight {
    background: #fff;
  }
  .highlighter-rouge .highlight {
    background: #eef;
  }
  .highlight .c {
    color: #998;
    font-style: italic;
  }
  .highlight .err {
    color: #a61717;
    background-color: #e3d2d2;
  }
  .highlight .k {
    font-weight: bold;
  }
  .highlight .o {
    font-weight: bold;
  }
  .highlight .cm {
    color: #998;
    font-style: italic;
  }
  .highlight .cp {
    color: #999;
    font-weight: bold;
  }
  .highlight .c1 {
    color: #998;
    font-style: italic;
  }
  .highlight .cs {
    color: #999;
    font-weight: bold;
    font-style: italic;
  }
  .highlight .gd {
    color: #000;
    background-color: #fdd;
  }
  .highlight .gd .x {
    color: #000;
    background-color: #faa;
  }
  .highlight .ge {
    font-style: italic;
  }
  .highlight .gr {
    color: #a00;
  }
  .highlight .gh {
    color: #999;
  }
  .highlight .gi {
    color: #000;
    background-color: #dfd;
  }
  .highlight .gi .x {
    color: #000;
    background-color: #afa;
  }
  .highlight .go {
    color: #888;
  }
  .highlight .gp {
    color: #555;
  }
  .highlight .gs {
    font-weight: bold;
  }
  .highlight .gu {
    color: #aaa;
  }
  .highlight .gt {
    color: #a00;
  }
  .highlight .kc {
    font-weight: bold;
  }
  .highlight .kd {
    font-weight: bold;
  }
  .highlight .kp {
    font-weight: bold;
  }
  .highlight .kr {
    font-weight: bold;
  }
  .highlight .kt {
    color: #458;
    font-weight: bold;
  }
  .highlight .m {
    color: #099;
  }
  .highlight .s {
    color: #d14;
  }
  .highlight .na {
    color: #008080;
  }
  .highlight .nb {
    color: #0086B3;
  }
  .highlight .nc {
    color: #458;
    font-weight: bold;
  }
  .highlight .no {
    color: #008080;
  }
  .highlight .ni {
    color: #800080;
  }
  .highlight .ne {
    color: #900;
    font-weight: bold;
  }
  .highlight .nf {
    color: #900;
    font-weight: bold;
  }
  .highlight .nn {
    color: #555;
  }
  .highlight .nt {
    color: #000080;
  }
  .highlight .nv {
    color: #008080;
  }
  .highlight .ow {
    font-weight: bold;
  }
  .highlight .w {
    color: #bbb;
  }
  .highlight .mf {
    color: #099;
  }
  .highlight .mh {
    color: #099;
  }
  .highlight .mi {
    color: #099;
  }
  .highlight .mo {
    color: #099;
  }
  .highlight .sb {
    color: #d14;
  }
  .highlight .sc {
    color: #d14;
  }
  .highlight .sd {
    color: #d14;
  }
  .highlight .s2 {
    color: #d14;
  }
  .highlight .se {
    color: #d14;
  }
  .highlight .sh {
    color: #d14;
  }
  .highlight .si {
    color: #d14;
  }
  .highlight .sx {
    color: #d14;
  }
  .highlight .sr {
    color: #009926;
  }
  .highlight .s1 {
    color: #d14;
  }
  .highlight .ss {
    color: #990073;
  }
  .highlight .bp {
    color: #999;
  }
  .highlight .vc {
    color: #008080;
  }
  .highlight .vg {
    color: #008080;
  }
  .highlight .vi {
    color: #008080;
  }
  .highlight .il {
    color: #099;
  }
}

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