* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-size: 100%;
  font-weight: 400;
  line-height: 1.65;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fcfcfc;
  color: #31312f;
}

img {
  color: #fcfcfc;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1,
h2,
h3 {
  font-family: "Inria Serif", serif;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

input,
select,
button,
textarea {
  border: none;
  background: transparent;
  outline: none;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 1rem;
}

input[type=email],
input[type=text],
input[type=password],
input[type=search] {
  display: block;
  width: 100%;
}

a,
button,
label,
input[type=submit],
input[type=checkbox],
input[type=radio] {
  cursor: pointer;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

.sr-only,
.hidden {
  display: none;
}

@font-face {
  font-family: "Inria Serif";
  src: url("/assets/fonts/subset-InriaSerif-Bold.woff2") format("woff2"), url("/assets/fonts/subset-InriaSerif-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
.announcement {
  background-color: #fffebd;
  border-bottom: 0.094rem solid #5f6cee;
  padding: 0.75rem 0;
  font-size: 0.938rem;
  text-align: center;
}

.width {
  width: calc(100% - 3rem);
  max-width: 84rem;
  margin: 0 auto;
}

.header__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
}
@media (min-width: 60rem) {
  .header__flex {
    padding-top: 3rem;
  }
}
.header__logo {
  color: #0c0c0c;
}
.header__nav {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.header__nav a {
  font-weight: 600;
  color: #0c0c0c;
  align-items: center;
  column-gap: 0.5rem;
  font-size: 0.938rem;
  transition: 0.2s color;
  display: inline-flex;
}
.header__nav a:hover {
  color: #5b5b5b;
}
.header__nav a span {
  display: none;
}
@media (min-width: 37.5rem) {
  .header__nav a span {
    display: inline;
  }
}

@keyframes slideBackgroundUp {
  from {
    background-position: 0 0%;
  }
  to {
    background-position: 0 -200%; /* Extend beyond -100% */
  }
}
.intro {
  position: relative;
  padding: 3.75rem 0;
  background-size: 3.375rem;
  animation: 30s infinite slideBackgroundUp linear;
  background-image: url("data:image/svg+xml,%3Csvg width='54' height='54' viewBox='0 0 54 54' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M53 0H54V54H53V0Z' fill='%23E6E6E6'/%3E%3Cpath d='M0 54L1.19253e-08 53H54V54H0Z' fill='%23E6E6E6'/%3E%3C/svg%3E%0A");
}
@media (min-width: 60rem) {
  .intro {
    padding: 5rem 0 3.75rem;
  }
}
.intro:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-image: radial-gradient(ellipse 100% 80%, rgba(30, 33, 38, 0) 0%, #fcfcfc 60%);
}
@media (min-width: 60rem) {
  .intro:after {
    background-image: radial-gradient(ellipse 50% 80%, rgba(30, 33, 38, 0) 0%, #fcfcfc 80%);
  }
}
.intro__flex {
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
  position: relative;
  z-index: 2;
  gap: 1.5rem;
  max-width: 31.25rem;
  margin: 0 auto;
}
.intro__image {
  width: 8.75rem;
  height: 8.75rem;
  border-radius: 50%;
  border: 0.094rem solid #0c0c0c;
}
.intro__image img {
  border-radius: 50%;
  width: 8.75rem;
  height: 8.75rem;
}
.intro__text {
  max-width: 25rem;
  font-family: "Inria Serif", serif;
}
.intro__text h1 {
  font-size: 2.25rem;
  margin-bottom: 0.375rem;
}
.intro__text h2 {
  font-size: 1.313rem;
  color: #5b5b5b;
}

.footer {
  padding: 3rem 0;
  margin-top: 3rem;
  border-top: 0.094rem solid #ddd;
}
@media (min-width: 47.5rem) {
  .footer {
    padding: 4rem 0;
  }
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 47.5rem) {
  .footer-top {
    flex-direction: row;
    gap: 10rem;
  }
}
.footer-top__column--copy {
  flex: 1;
  order: 99;
}
@media (min-width: 47.5rem) {
  .footer-top__column--copy {
    order: -1;
  }
}
.footer-top h3 {
  margin-bottom: 1.25rem;
}
.footer-top li + li {
  margin-top: 0.625rem;
}
.footer-top p {
  color: #5b5b5b;
}
.footer-top a {
  transition: 0.2s color;
  color: #5b5b5b;
}
.footer-top a:hover {
  color: #0c0c0c;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.projects {
  margin-top: 2rem;
  margin-bottom: 2.75rem;
}
.projects__heading {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.313rem;
}
@media (min-width: 60rem) {
  .projects__heading {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}
.projects__grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 47.5rem) {
  .projects__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 60rem) {
  .projects__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 71.25rem) {
  .projects__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.projects__view-more {
  margin: 2rem auto 0;
  background: #0c0c0c;
  color: #fcfcfc;
  display: block;
  line-height: 2.75rem;
  max-width: 7.5rem;
  font-size: 0.875rem;
  text-align: center;
  font-weight: 600;
  border-radius: 0.25rem;
}
.projects #display-all:checked ~ .projects__view-more {
  display: none;
}

.project-card {
  border: 0.09375rem solid #0c0c0c;
  background-color: #fcfcfc;
  border-radius: 0.75rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.project-card:nth-of-type(1n + 9) {
  display: none;
}
#display-all:checked + .projects__grid .project-card:nth-of-type(1n + 9) {
  display: block;
}
.project-card__image {
  position: relative;
  padding-top: 56.25%;
}
.project-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.project-card__text {
  border-top: 0.063rem solid #0c0c0c;
  padding: 1.5rem;
  display: block;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.project-card__tags {
  display: inline-flex;
  gap: 0.313rem;
  margin-bottom: 1rem;
}
.project-card__title {
  font-size: 1.5rem;
}
.project-card__description {
  font-size: 0.938rem;
  margin: 0.5rem 0 1.25rem;
}
.project-card__buttons {
  display: inline-flex;
  gap: 0.5rem;
  margin-top: auto;
}

.badge {
  font-size: 0.625rem;
  font-weight: bold;
  display: inline-flex;
  color: #0c0c0c;
  padding: 0.125rem 0.438rem;
  text-transform: uppercase;
  border: 0.0625rem solid #0c0c0c;
  border-radius: 6rem;
}
.badge--blue, .badge--games {
  background-color: #dbfff6;
}
.badge--yellow, .badge--webapps {
  background-color: #fffebd;
}
.badge--green, .badge--macos {
  background-color: #e2ffe0;
}
.badge--red, .badge--tools {
  background-color: #ffd6d6;
}
.badge--orange, .badge--unity {
  background-color: #ffdfc7;
}
.badge--purple, .badge--fullstack {
  background-color: #f0d9ff;
}
.badge--indigo, .badge--libraries {
  background-color: #e0e4ff;
}
.badge--teal {
  background-color: #d6fff7;
}
.badge--cyan, .badge--nes {
  background-color: #d8f9ff;
}
.badge--lime, .badge--monogame {
  background-color: #f2ffcc;
}
.badge--gray {
  background-color: #eeeeee;
}
.badge--brown {
  background-color: #f1e0d6;
}

.button {
  display: inline-flex;
  border: 0.09375rem solid #5f6cee;
  border-radius: 0.25rem;
  line-height: 2.25rem;
  padding: 0 0.75rem;
  gap: 0.5rem;
  align-items: center;
  font-weight: 600;
  font-size: 0.875rem;
  transition: 0.2s background-color, 0.2s color, 0.2s border-color;
}
.button--primary {
  background-color: #0c0c0c;
  color: #fcfcfc;
  border-color: #0c0c0c;
}
.button--primary:hover {
  background-color: #373737;
  border-color: #373737;
  color: #fcfcfc;
}
.button--secondary {
  color: #0c0c0c;
  border-color: #0c0c0c;
}
.button--secondary:hover {
  background-color: #0c0c0c;
  border-color: #0c0c0c;
  color: #fcfcfc;
}
.button--disabled {
  cursor: not-allowed;
  opacity: 0.5;
  user-select: none;
}
.button--disabled:hover {
  background-color: #0c0c0c;
  color: #fcfcfc;
  border-color: #0c0c0c;
}
.button--fullWidth {
  display: flex;
  width: 100%;
  justify-content: center;
}
.button svg {
  width: auto;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.tech {
  padding: 6.25rem 0;
}
.tech__heading {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.313rem;
}
@media (min-width: 60rem) {
  .tech__heading {
    font-size: 1.5rem;
  }
}
.tech__marquee {
  position: relative;
  overflow: hidden;
}
.tech__slides {
  display: inline-flex;
  white-space: nowrap;
}
.tech__slides:after, .tech__slides:before {
  height: 100%;
  width: 4.375rem;
  content: "";
  position: absolute;
  z-index: 2;
}
@media (min-width: 60rem) {
  .tech__slides:after, .tech__slides:before {
    width: 9.375rem;
  }
}
.tech__slides:before {
  left: 0;
  background: linear-gradient(to right, #fcfcfc, rgba(255, 255, 255, 0));
}
.tech__slides:after {
  right: 0;
  background: linear-gradient(to left, #fcfcfc, rgba(255, 255, 255, 0));
}
.tech__slide {
  display: inline-flex;
  align-items: center;
  gap: 3.125rem;
  animation: 30s infinite slide linear;
  padding: 0 1.25rem;
}
.tech__marquee:hover .tech__slide {
  animation-play-state: paused;
}
.tech svg {
  max-width: none;
  display: inline;
}

.post {
  max-width: 45rem;
  margin: 0 auto;
  padding: 7.5rem 0;
}
.post__header {
  margin-bottom: 5rem;
}
.post__title {
  font-size: 4rem;
}
.post__meta {
  font-size: 1.25rem;
  margin-top: 0.625rem;
}

.post__body {
  color: #0c0c0c;
}
@media (min-width: 60rem) {
  .post__body {
    font-size: 1.125rem;
  }
}
.post__body > * + * {
  margin-top: 1.5rem;
}
.post__body strong,
.post__body b,
.post__body h2,
.post__body h3,
.post__body h4,
.post__body h5,
.post__body h6 {
  color: #0c0c0c;
}
.post__body a {
  text-decoration: underline;
  transition: 0.2s color;
  color: #0c0c0c;
}
.post__body a:hover {
  color: #0c0c0c;
}
.post__body * + h2,
.post__body * + h3,
.post__body * + h4,
.post__body * + h5,
.post__body * + h6 {
  margin-top: 3rem;
}
.post__body h2 {
  font-size: 1.5rem;
}
@media (min-width: 60rem) {
  .post__body h2 {
    font-size: 1.75rem;
  }
}
.post__body h3 {
  font-size: 1.188rem;
}
@media (min-width: 60rem) {
  .post__body h3 {
    font-size: 1.375rem;
  }
}
.post__body h4 {
  font-size: 1rem;
}
@media (min-width: 60rem) {
  .post__body h4 {
    font-size: 1.125rem;
  }
}
.post__body li ul,
.post__body li ol {
  margin-left: 1.25rem;
  margin-top: 0.625rem;
}
.post__body ul li {
  list-style-type: disc;
  list-style-position: inside;
}
.post__body ol {
  counter-reset: item;
}
.post__body ol li {
  counter-increment: item;
  list-style: none;
}
.post__body ol li:before {
  margin-right: 0.625rem;
  content: counter(item);
  border-radius: 100%;
  background: #0c0c0c;
  color: #fcfcfc;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 0.75rem;
  border-radius: 50%;
  text-align: center;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  font-weight: bold;
}
.post__body li + li {
  margin-top: 0.625rem;
}
.post__body figcaption {
  font-size: 0.813rem;
  text-align: center;
  margin-top: 0.625rem;
}
@media (min-width: 60rem) {
  .post__body figcaption {
    font-size: 0.875rem;
  }
}
.post__body pre {
  background-color: #eee;
  border: 0.094rem solid #ddd;
  padding: 1rem 1.5rem !important;
  border-radius: 0.75rem;
  overflow-x: auto;
  font-size: 0.875rem;
}
.post__body p code,
.post__body li code {
  background-color: #eee;
  border: 0.094rem solid #ddd;
  font-size: 0.813rem;
  border-radius: 0.25rem;
  padding: 0.125rem 0.313rem;
  color: #5b5b5b;
}
@media (min-width: 60rem) {
  .post__body p code,
  .post__body li code {
    font-size: 0.875rem;
  }
}
.post__body img,
.post__body video,
.post__body .placeholder {
  border-radius: 0.5rem;
}

.blog-page {
  padding: 5rem 0;
}

.blog__heading {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.313rem;
}
@media (min-width: 60rem) {
  .blog__heading {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}

.blog-card {
  max-width: 37.5rem;
  margin: 0 auto;
  padding: 2.75rem 0;
  border-top: 0.094rem solid #ddd;
  display: block;
  cursor: pointer;
  transition: 0.2s border-color, 0.2s transform;
}
.blog-card:hover {
  transform: scale(1.02);
}
.blog-card h4 {
  color: #0c0c0c;
  font-size: 1.313rem;
}
@media (min-width: 60rem) {
  .blog-card h4 {
    font-size: 1.5rem;
  }
}
.blog-card p {
  color: #5b5b5b;
  margin-top: 0.625rem;
  transition: 0.2s color;
}
@media (min-width: 60rem) {
  .blog-card p {
    font-size: 1.125rem;
  }
}

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