* {
  padding: 0;
  margin: 0;
  border: none;
}
body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  background-color: black;
}
main {
  display: flex;
  padding: 32px;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  flex-grow: 1;
  background-color: #111111;
}
.error {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.error > img {
  width: 112px;
  height: 112px;
}
.error > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: white;
  text-align: left;
  font-family: 'OpenSans', sans-serif;
}
.error > div > h1 {
  font-size: 24px;
}
.error > div > p {
  font-size: 14px;
}
footer {
  display: flex;
  padding: 48px 16px 16px 16px;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px 48px;
  background-image: linear-gradient(to top, #00000080, #111111);
}
footer > .link {
  color: white;
  font-family: 'OpenSans', sans-serif;
  font-size: 14px;
}
footer > .jaspr-badge {
  width: 106px;
  height: 40px;
}
footer > .jaspr-badge:hover > span:first-child {
  display: none;
}
footer > .jaspr-badge:hover > span:last-child {
  display: initial;
}
footer > .jaspr-badge > span:last-child {
  display: none;
}
header {
  display: flex;
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  flex-direction: column;
}
header > .content {
  display: flex;
  padding: 16px 24px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: #00000080;
  background-blend-mode: color;
  background-image: linear-gradient(to top left, #73A5FF, #FF4BFF), linear-gradient(to top right, #5F55FF, #EC76FF);
}
header > .content > a {
  color: white;
  font-family: 'OpenSans', sans-serif;
  font-size: 14px;
  font-weight: 600;
}
header .under-construction-tape {
  height: 8px;
  background-image: url(assets/images/under-construction-tape.svg);
  background-position: center;
  background-repeat: repeat-x;
}
.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.logo > img {
  width: 48px;
  height: 48px;
}
.logo > a {
  width: 48px;
  height: 48px;
}
.logo > a > img {
  width: 100%;
  height: 100%;
}
.logo > p {
  color: white;
  font-family: 'OpenSans', sans-serif;
  font-size: 18px;
  font-weight: 700;
}
section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
section > h1 {
  color: white;
  text-align: left;
  font-family: 'OpenSans', sans-serif;
  font-size: 24px;
  font-weight: 700;
}
section > div {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
.project-card {
  display: flex;
  width: 300px;
  aspect-ratio: 11/6;
  padding: 16px;
  border-radius: 16px;
  transition: all 250ms;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  background-position: center;
}
.project-card:hover {
  transform: scale(1.05);
}
.project-card > div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.project-card > .description {
  text-align: center;
  font-family: 'OpenSans', sans-serif;
  font-size: 14px;
  white-space: pre-line;
}
.skill-icon-display {
  width: 32px;
  height: 32px;
}
@font-face {
  font-family: "OpenSans";
  font-style: normal;
  src: url(assets/fonts/open_sans/OpenSans.ttf);
}
@font-face {
  font-family: "OpenSans";
  font-style: italic;
  src: url(assets/fonts/open_sans/OpenSans-Italic.ttf);
}
.not-found-page {
  justify-content: center;
}