.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem;
}
.about > * {
  max-width: var(--max-page-width);
}

.experience {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: min-content;
  place-items: center;
  gap: 0rem;
}
.experience .summary {
  display: grid;
  position: relative;
  grid-template-columns: 1fr min-content;
  grid-template-rows: min-content;
  max-width: var(--max-page-width);
  padding: 1rem;
  gap: 1rem;
}
.experience .summary .title {
  margin-top: 0px;
}
.experience .summary .print-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.experience .summary__right {
  display: none;
  text-align: right;
}
.experience .summary__right .content ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 1rem;
}
.experience .skills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--max-page-width);
  padding: 1rem;
  gap: 1rem;
}
.experience .skills__front-end svg {
  color: #ff66ff;
}
.experience .skills__back-end svg {
  color: #cc9900;
}
.experience .skills__other svg {
  color: #80ff80;
}
.experience .skills .title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.experience .skills .title__text {
  font-size: 1.9rem;
  text-align: center;
}
.experience .skills .title .fontawesome__svg {
  font-size: 3rem;
}
.experience .skills .content ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.experience .skills .content li {
  padding: 0.1rem 0.5rem;
}
.experience .professional,
.experience .education,
.experience .hobbies {
  display: grid;
  grid-template-columns: min-content 1fr;
  max-width: var(--max-page-width);
  padding: 1rem;
  gap: 1rem;
}
.experience .professional .title,
.experience .education .title,
.experience .hobbies .title {
  display: flex;
  align-items: center;
  height: min-content;
  gap: 1rem;
}
.experience .professional .title__text,
.experience .education .title__text,
.experience .hobbies .title__text {
  margin: 0px;
}
.experience .professional .title .fontawesome__svg,
.experience .education .title .fontawesome__svg,
.experience .hobbies .title .fontawesome__svg {
  margin: 0.25rem;
  font-size: 2.5rem;
}
.experience .professional .content *,
.experience .education .content *,
.experience .hobbies .content * {
  margin: 0.25rem 0;
}
.experience .professional .title .fontawesome__svg {
  color: #996633;
}
.experience .education .title .fontawesome__svg {
  color: #24478f;
}
.experience .hobbies .title .fontawesome__svg {
  color: #bfbfbf;
}

@media screen and (max-width: 935px) {
  .experience .summary__right {
    text-align: left;
    grid-area: 1/1;
  }
  .experience .skills .title {
    flex-direction: row;
    justify-content: left;
    gap: 1rem;
  }
  .experience .skills .content ul {
    justify-content: left;
  }
  .experience .summary,
  .experience .skills,
  .experience .professional,
  .experience .education {
    grid-template-columns: 1fr;
  }
}
@media print {
  .experience {
    padding: 1rem;
    gap: 1rem;
  }
  .experience .summary,
  .experience .skills,
  .experience .professional,
  .experience .education {
    border: 2px solid black;
    border-radius: 5px;
  }
  .experience .summary .title,
  .experience .skills .title,
  .experience .professional .title,
  .experience .education .title {
    font-size: 1.5rem;
  }
  .experience .summary .title__text,
  .experience .skills .title__text,
  .experience .professional .title__text,
  .experience .education .title__text {
    font-size: 1.5rem;
  }
  .experience .summary .content *,
  .experience .skills .content *,
  .experience .professional .content *,
  .experience .education .content * {
    margin: 0px;
    font-size: 1.0089rem;
  }
  .experience .professional,
  .experience .education {
    grid-template-columns: min-content 1fr;
    padding: 0.5rem;
  }
  .experience .professional .title .fontawesome__svg,
  .experience .education .title .fontawesome__svg {
    font-size: 1.5rem;
  }
  .experience .summary .title {
    margin-bottom: 0.5rem;
  }
  .experience .summary .content p {
    margin: 0px;
  }
  .experience .summary__right {
    display: block;
  }
  .experience .skills .title {
    flex-direction: row;
    gap: 0.5rem;
  }
  .experience .skills .title__text {
    margin: 0px;
  }
  .experience .skills .title .fontawesome__svg {
    font-size: 1.5rem;
  }
  .experience .skills .content ul li {
    padding: 0 0.25rem;
  }
}
.list {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.list__container {
  display: flex;
  flex-direction: column;
  max-width: var(--max-page-width);
  margin-bottom: 10rem;
  padding: 1rem;
  gap: 10rem;
}
.list .list-item {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-color);
}
.list .list-item:link, .list .list-item:visited {
  color: none;
}
.list .list-item:nth-child(even) {
  flex-direction: row-reverse;
}
.list .list-item:nth-child(even) .list-item__content {
  transform: translate(-30%);
}
.list .list-item__image {
  object-fit: cover;
  overflow: hidden;
  background: black;
  box-shadow: 0 0 5px black;
  max-width: 35rem;
  width: 100%;
  height: 35rem;
}
.list .list-item__content {
  background: var(--base-gray);
  padding: 1rem;
  text-align: center;
  transform: translateX(30%);
  box-shadow: 0 0 5px black;
  max-width: 28rem;
  width: 100%;
}
.list .list-item__title {
  margin: 0.5rem 0;
}
.list .list-item__summary {
  margin-bottom: 1rem;
}
@media screen and (max-width: 65rem) {
  .list .list-item {
    flex-direction: column-reverse;
    margin-bottom: 0;
  }
  .list .list-item:nth-child(even) {
    flex-direction: column-reverse;
  }
  .list .list-item:nth-child(even) .list-item__content {
    transform: translateY(-50%);
  }
  .list .list-item__image {
    min-width: 100%;
  }
  .list .list-item__content {
    transform: translateY(-50%);
    margin: 0.5rem;
  }
}

.single {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 1rem;
}
.single > * {
  max-width: var(--max-page-width);
}
.single .single-header {
  display: grid;
  position: relative;
  width: 100%;
  padding: 1rem 0;
}
.single .single-header__image {
  grid-area: 1/1;
  height: 30rem;
  width: 75%;
  object-fit: cover;
  box-shadow: 0 0 5px black;
}
.single .single-header__overlay {
  grid-area: 1/1;
  background: gray;
  width: 50%;
  height: min-content;
  box-shadow: 0 0 5px black;
  text-align: center;
  margin: 1rem;
  justify-self: flex-end;
  padding: 1rem;
}
.single__content {
  padding: 0 0.5rem;
}
.single .button {
  margin-bottom: 1rem;
}
@media screen and (max-width: 65rem) {
  .single .single-header {
    margin-bottom: 4rem;
    padding: 0;
  }
  .single .single-header__image {
    width: 100%;
    height: 20rem;
  }
  .single .single-header__overlay {
    justify-self: flex-start;
    width: auto;
    align-self: flex-end;
    transform: translateY(5rem);
  }
}

.home-articles {
  text-align: center;
}

.home {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 2rem;
}
.home > * {
  width: 100%;
  max-width: var(--max-page-width);
}

.home-projects {
  text-align: center;
}

.button {
  padding: 0.5rem 1.5rem;
  border: 1px solid gray;
  border-radius: 1rem;
  font-weight: bold;
  box-shadow: 0 0 3px black;
  cursor: pointer;
  /* @keyframes default-press { */
  /*     0% { */
  /*         box-shadow: 0 0 3px black; */
  /*         transform: scale(1); */
  /*     } */
  /*     50% { */
  /*         box-shadow: none; */
  /*         transform: scale(0.9); */
  /*     } */
  /*     100% { */
  /*         box-shadow: 0 0 3px black; */
  /*         transform: scale(1); */
  /*     } */
  /* } */
  /* &:not(active):before { */
  /*     animation: default-press 500ms; */
  /* } */
  /* &:active:before { */
  /*     animation: default-press 500ms; */
  /* } */
}

.footer {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  padding: 1rem 1rem 4rem;
  height: 8rem;
  background: var(--base-gray);
  box-shadow: black 1px 0px 5px;
}
.footer .fontawesome__svg {
  font-size: 1.5rem;
}
.footer__title {
  margin: 0;
  color: transparent;
  background: var(--gradient);
  background-clip: text;
  filter: drop-shadow(0px 2px 10px black);
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  background: var(--darkest-gray);
  height: 23rem;
  padding: 0 0.5rem;
  position: relative;
}
.header__profile-img {
  background-size: cover;
  width: 7rem;
  height: 7rem;
  border: 0.5rem solid var(--off-white);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 10px black;
  z-index: 1;
}
.header .header-text {
  text-align: center;
  color: transparent;
  background: var(--gradient);
  background-clip: text;
  filter: drop-shadow(0px 2px 10px black);
}
.header .header-text__title, .header .header-text__description {
  margin: 0;
}

.link a {
  transition: color 250ms;
  color: var(--base-orange);
  text-decoration: none;
}
.link a:visited {
  color: none;
}
.link a:focus {
  color: none;
}
.link a:hover {
  color: var(--brightest-blue);
  text-decoration: underline;
}

.main {
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

.nav {
  top: 0;
  position: sticky;
  background: var(--base-gray);
  box-shadow: black 1px 0px 5px;
  padding: 0.75rem;
  display: flex;
  justify-content: center;
  min-width: 20rem;
  user-select: none;
  z-index: 2;
}
.nav__link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: wrap;
  text-decoration: none;
  color: var(--off-white);
  padding: 0.25rem 0.5rem;
  filter: drop-shadow(0px 2px 10px black);
  transition: color 500ms;
}
.nav__link:hover {
  color: var(--base-orange);
}
.nav__link:link, .nav__link:visited {
  color: none;
}
.nav__link--is-active {
  color: var(--brightest-blue);
  animation: 500ms linear forwards 0s 1 loadFade;
}
@keyframes loadFade {
  0% {
    color: var(--base-orange);
  }
  100% {
    color: var(--brightest-blue);
  }
}
.nav .fontawesome__svg {
  margin-right: 0.25rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Ubuntu-Medium;
  margin: 1rem 0;
}

p {
  margin: 1rem 0;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1rem;
}

.blobs-background {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: clip;
  max-width: 1920px;
}
.blobs-background .blob {
  display: flex;
  position: absolute;
  width: 15em;
  height: max-content;
}
.blobs-background .blob svg {
  width: 100%;
  height: 100%;
}
.blobs-background .blob__0 {
  top: 0;
  right: 1rem;
}
.blobs-background .blob__1 {
  top: 0;
  left: 10rem;
}
.blobs-background .blob__2 {
  right: 4rem;
  bottom: -18px;
  transform: rotate(90deg);
}
.blobs-background .blob__3 {
  bottom: 0;
  left: 15rem;
  width: 45rem;
}
.blobs-background .blob__4 {
  bottom: 0;
  left: 0;
}
.blobs-background .blob__5 {
  top: -80px;
  right: 21rem;
  width: 20rem;
  transform: rotate(-28deg);
}

.fontawesome__svg {
  display: flex;
  justify-content: center;
  height: 1em;
  width: 1em;
}

.link-icon--solid-circle {
  font-size: 1.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.5em;
  height: 1.5em;
  background: white;
  text-decoration: none;
  padding: 0.35em;
  margin: 0.3em;
  border-radius: 50%;
  color: black;
  transition: transform 500ms;
  box-shadow: rgb(0, 0, 0) 1px 0px 5px;
}
.link-icon--solid-circle:link, .link-icon--solid-circle:visited {
  color: none;
}
.link-icon--solid-circle:hover {
  transform: scale(1.2) rotate(360deg);
}

.links {
  display: flex;
  z-index: 1;
}
.links .linkedin {
  color: rgb(72, 117, 180);
}
.links .gitlab {
  color: #fc6d26;
}
.links .email {
  color: rgb(103, 136, 128);
}
.links .phone {
  color: rgb(255, 140, 26);
}
.links .ko-fi {
  color: #ff471a;
}
.links .fontawesome__svg {
  font-size: 1.5rem;
}

.showcase .carousel__page {
  grid-template-columns: repeat(3, calc((var(--max-page-width) - 4rem) / 3));
}
@media (max-width: 65rem) {
  .showcase .carousel__track {
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(calc((var(--max-page-width) - 4rem) / 3), 1fr));
  }
}

.showcase-link {
  display: grid;
  grid-template-rows: 15rem 9rem 2rem;
  text-decoration: none;
  color: var(--text-color);
  transition: transform 500ms, filter 500ms;
}
.showcase-link:link, .showcase-link:visited {
  color: none;
}
.showcase-link:hover {
  transform: translateY(-0.25rem);
  filter: drop-shadow(0 2px 5px black);
}
.showcase-link:hover .showcase__summary {
  opacity: 1;
}
.showcase-link:hover .showcase__shadow {
  opacity: 0.6;
}

.showcase {
  display: flex;
  position: relative;
  text-align: left;
}
.showcase__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  overflow: hidden;
  background: black;
  box-shadow: 0 0 5px black;
  grid-area: 1/1/span 2;
  transition: box-shadow 500ms;
}
.showcase__summary {
  grid-area: 1/1;
  align-self: center;
  margin: 0;
  padding: 1rem;
  z-index: 1;
  opacity: 0;
  transition: opacity 500ms;
}
.showcase__title {
  width: 100%;
  margin: 0;
}
.showcase__description {
  margin: 0.5rem 0 1rem 0;
  font-family: Ubuntu;
  width: 100%;
}
.showcase__shadow {
  grid-area: 1/1/span 2;
  background: var(--base-gray);
  opacity: 0;
  transition: opacity 500ms;
}
.showcase__box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--base-gray);
  box-shadow: 0 0 5px black;
  opacity: 1;
  grid-area: 2/1/span 2;
  padding: 1rem;
  margin: 0 0.75rem;
  z-index: 1;
  transition: box-shadow 500ms;
}
.showcase__box-underlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.sticky-title {
  font-size: 8vh;
  opacity: 0.25;
  position: sticky;
  top: 3rem;
  max-width: calc(var(--max-page-width) * 1.15);
  width: 100%;
  text-align: left;
  margin: 1rem 0;
  user-select: none;
  z-index: -1;
  word-wrap: break-word;
}

.testimonials .carousel {
  display: grid;
  justify-items: center;
}
@media (max-width: 65rem) {
  .testimonials .carousel .testimonial {
    width: 75%;
  }
}

.testimonial {
  width: 50%;
  place-self: center;
}

.carousel-btn {
  display: flex;
  position: absolute;
  align-items: center;
  cursor: pointer;
  font-size: 1.5rem;
  background: transparent;
  border: 0px transparent;
  color: white;
}
.carousel-btn .fontawesome__svg {
  transition: transform 500ms, filter 500ms;
}
.carousel-btn__prev {
  top: 50%;
  left: 0;
  transform: translate(calc(-100% - 1rem), -50%);
}
.carousel-btn__prev:hover .fontawesome__svg {
  filter: drop-shadow(0 2px 5px black);
  transform: scale(1.2) rotate(-360deg);
}
.carousel-btn__next {
  top: 50%;
  right: 0;
  transform: translate(calc(100% + 1rem), -50%);
}
.carousel-btn__next:hover .fontawesome__svg {
  filter: drop-shadow(0 2px 5px black);
  transform: scale(1.2) rotate(360deg);
}

.carousel-indicator {
  display: flex;
  position: relative;
  width: min-content;
}
.carousel-indicator__pages {
  display: flex;
  align-content: center;
  justify-content: center;
  gap: 1rem;
}
.carousel-indicator__button {
  cursor: pointer;
  padding: 0;
  background: transparent;
  border: none;
}
.carousel-indicator__button svg {
  color: var(--text-color);
}
.carousel-indicator__button--active svg {
  color: gray;
}

.carousel {
  position: relative;
}
.carousel__viewport {
  overflow: hidden;
  max-width: var(--max-page-width);
  width: 100%;
}
.carousel__track {
  display: grid;
  grid-auto-flow: column;
  padding: 1rem;
  gap: 2rem;
}
.carousel__page {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(var(--max-page-width) - 2rem);
  gap: 1rem;
}
@media (max-width: 65rem) {
  .carousel__page {
    grid-auto-columns: calc(100vw - 2rem);
  }
  .carousel.grid .carousel__track {
    transform: none !important;
    grid-auto-flow: row;
    width: calc(100% - 2rem);
  }
  .carousel.grid .carousel__track > *:not(:first-child) {
    display: none;
  }
  .carousel.grid .carousel__page {
    display: contents;
    grid-auto-flow: row;
  }
}

.shortcode-image__container {
  display: flex;
  justify-content: center;
}
.shortcode-image__image {
  background: black;
  max-height: 75vh;
  max-width: 100%;
}

.highlight pre {
  /* not sure why this works, but we'll keep this here for now */
  max-width: calc(100vw - 2rem);
  overflow: auto;
}

@font-face {
  font-family: Ubuntu;
  src: url("../fonts/Ubuntu-Regular.ttf");
}
@font-face {
  font-family: Ubuntu-Medium;
  src: url("../fonts/Ubuntu-Medium.ttf");
}
:root {
  --base-gray: #515151;
  --base-orange: #f47c43;
  --darkest-gray: #3c3c3c;
  --text-color: white;
  --background-color: #3c3c3c;
  --brightest-blue: rgb(53 210 201);
  --off-white: rgb(204 204 204);
  --gradient: linear-gradient(
      180deg,
      #f88139 0%,
      #e66963 71.35%,
      #e8524b 100%
  );
  --max-page-width: 62rem;
  font-family: Ubuntu;
  font-size: 17px;
}

html body {
  display: grid;
  grid-template-rows: min-content min-content 1fr min-content;
  grid-template-columns: 1fr;
  min-height: 100vh;
  margin: 0;
  overflow: hidden scroll;
  color: var(--text-color);
  background: var(--background-color);
  color-scheme: dark;
}

@media print {
  html {
    font-size: 14px !important;
  }
  html header,
  html nav,
  html footer {
    display: none !important;
  }
  p,
  ul,
  li,
  h2,
  h3 {
    color: black;
  }
  .no-print,
  .no-print * {
    display: none !important;
  }
}