@font-face {
  font-family: "Eurostile";
  src: url("eurostile_extended_black.ttf") format("truetype");
}
/* Subset: Latin1 */
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  src: url("IBMPlexMono-Regular-Latin1.woff") format("woff");
  unicode-range: U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122, U+2212, U+FB01-FB02;
}
.column {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.column a {
  width: fit-content;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
body, html {
  margin: 0;
  padding: 0;
  font-family: "IBM Plex Mono", sans-serif;
  font-size: 16px;
  font-size: min(20px, max(14px, 1.2vw));
}

body {
  background: rgb(247, 247, 247);
}

h1, h2, h3 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

a:hover {
  text-decoration: underline;
}

h1 {
  font-family: "Eurostile", sans-serif;
  font-size: 3.375rem;
}

h2 {
  font-family: "Eurostile", sans-serif;
  font-size: 2rem;
}

h3 {
  font-family: "Eurostile", sans-serif;
  font-size: 1rem;
}

div, p {
  margin: 0;
  padding: 0;
  font-family: "IBM Plex Mono", sans-serif;
  font-size: 1rem;
  line-height: 1.45;
}

.watch a {
  color: white;
  background: black;
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
}

#contact-link, #important {
  color: black;
  text-decoration: none;
}
#contact-link:hover, #important:hover {
  text-decoration: underline;
}

#contact {
  display: none;
  position: fixed;
  bottom: 2rem;
  right: 1rem;
  background: white;
  border: solid black 1px;
  padding: 0.25rem 0.5rem;
}
#contact a {
  color: black;
}

#site {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 1200px) {
  #site {
    gap: 2rem;
  }
  #site #header-absolute {
    display: none !important;
  }
}
#site #header-absolute {
  display: flex;
  display: none;
  justify-content: center;
  position: absolute;
  width: 100%;
  max-width: 1500px;
  width: calc(100vw - 4rem);
  width: calc(100vw - 2 * 2rem);
  top: 1em;
}
#site #header {
  position: sticky;
  top: 2rem;
  z-index: 100;
}
#site #header #header-small-title {
  color: black;
  text-decoration: underline;
}
#site #header #header-small-title:hover span {
  transition: transform 0.2s;
  display: inline-block;
  animation: spin infinite 1s linear;
}
#site #header #header-small-title:hover span:nth-child(2) {
  animation-delay: -0.3s;
}
#site #header #header-small-title:hover span:nth-child(3) {
  animation-delay: -0.6s;
}
#site #header #links {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  background-color: white;
  padding: 0.25rem 0.5rem;
  display: flex;
  gap: 2rem;
}
@media (max-width: 480px) {
  #site #header #links {
    gap: 1.5rem;
    font-size: 0.9rem;
  }
}
#site #header-fixed {
  display: flex;
  justify-content: space-between;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  margin: 3rem 0 5rem;
}
#site #header-fixed #logo {
  color: black;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#site #header-fixed #logo img {
  width: 20rem;
}

@media (max-width: 1200px) {
  #site {
    padding: 1rem;
  }
}
#projects {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
#projects .project {
  display: flex;
  gap: 2rem;
  flex-direction: row-reverse;
  justify-content: space-between;
}
#projects .project .project-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1 1 50%;
}
#projects .project .project-text .project-text-header .tag {
  border: solid black 1px;
  display: inline-block;
  text-transform: uppercase;
  padding: 0.1rem 0.25rem;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
  margin: 0.5rem 0;
}
#projects .project .project-text .project-text-header h3 {
  text-transform: uppercase;
}
#projects .project .project-text .project-text-credits {
  display: flex;
  flex-direction: column;
  gap: 1em;
  font-size: 0.8rem;
  margin-top: 0rem;
}
#projects .project .project-text .project-text-credits .credit {
  font-size: inherit;
  display: flex;
  flex-direction: column;
}
#projects .project .project-text .project-text-credits .credit span:first-child {
  font-family: "Eurostile", sans-serif;
}
#projects .project .project-text .project-text-credits .credit span:nth-child(2) {
  font-family: "IBM Plex Mono", sans-serif;
}
#projects .project .project-image {
  text-align: right;
  flex: 1 1 50%;
  position: relative;
  max-width: 100%;
}
@media (min-width: 768px) {
  #projects .project .project-image img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: contain;
	object-position: top;
  }
}
#projects .project .project-image img {
  width: auto;
  width: 100%;
}
@media (max-width: 768px) {
  #projects .project {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-direction: column-reverse;
  }
  #projects .project .project-image {
    text-align: left;
  }
  #projects .project .project-image img {
    max-width: 100%;
    max-height: none;
  }
  #projects .project .project-text {
    flex: 1 0 auto;
    width: auto;
    gap: 1rem;
  }
  #projects .project .project-text .project-text-description {
    width: auto;
    max-width: 60rem;
  }
  #projects .project .project-text-credits {
    display: flex;
    gap: 2rem;
  }
  #projects .project.ourhome .credit:nth-child(6) {
    grid-row: 2;
    grid-column: 1/7;
  }
}
@media (max-width: 768px) {
  #projects .project .project-text-credits {
    display: flex !important;
    flex-wrap: wrap;
  }
}

#about {
  cursor: pointer;
}

#about-panel {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  backdrop-filter: blur(3px);
  overflow: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.1s, backdrop-filter 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}
#about-panel.open {
  opacity: 1;
  pointer-events: all;
}
#about-panel::-webkit-scrollbar {
  width: 2rem;
}
#about-panel::-webkit-scrollbar-thumb {
  background-color: black;
}
#about-panel::-webkit-scrollbar-track {
  background-color: white;
}
#about-panel #about-panel-close {
  cursor: pointer;
  z-index: 1;
  position: absolute;
  top: 1em;
  right: 1em;
  font-size: 2rem;
}
#about-panel #about-panel-content {
  position: relative;
  background: white;
  border: solid black 1px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 2rem;
  max-width: 1000px;
  padding: 4rem 2rem;
}
#about-panel #about-panel-content .about-text {
  font-size: 2rem;
}
@media (max-width: 768px) {
  #about-panel #about-panel-content .about-text {
    font-size: 1.5rem;
  }
}

#copyright {
  padding: 2rem 0;
}

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