@font-face {
  font-family: "Mackinac Book";
  src: url("./fonts/P22MackinacProBook.otf");
}
@font-face {
  font-family: "Mackinac Medium";
  src: url("./fonts/P22MackinacProMedium.otf");
}
body {
  height: 100vh;
  background: #030302;
  color: #fcf2d7;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
body h1,
body p {
  font-family: "Mackinac Medium";
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  body h1,
  body p {
    font-size: 16px;
  }
}
body em {
  font-style: normal;
  color: #a49f93;
}
body .info > div p:nth-of-type(2) {
  margin-top: 16px;
}
body {
  overflow: hidden;
}

main {
  height: 100svh;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  grid-gap: 32px;
  padding: 32px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  main {
    grid-template-columns: auto;
    gap: 64px;
    padding: 12px;
  }
}
main > .info > div {
  width: calc((50vw - 48px) / 2);
}
@media screen and (max-width: 768px) {
  main > .info > div {
    width: 100%;
  }
}
main .projects {
  overflow: hidden;
  border-radius: 8px;
}
main .project-list {
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none; /* Firefox, Safari 18.2+, Chromium 121+ */
}
main .project-list ::-webkit-scrollbar {
  display: none; /* Older Safari and Chromium */
}
main .project-list {
  overflow: scroll;
  height: 100vh;
}
main .project-list #clone {
  height: 100vh;
  overflow: hidden;
}
main .project-list > div > div {
  margin-bottom: 16px;
  position: relative;
}
main .project-list > div > div > a {
  position: relative;
  text-decoration: underline;
  display: flex;
  gap: 4px;
}
main .project-list > div > div p {
  position: absolute;
  bottom: 16px;
  left: 16px;
}
main .project-list > div > div p.dark {
  color: #030302;
}
main .project-list .image-container {
  overflow: hidden;
  aspect-ratio: 4/3;
  width: calc(50vw - 16px);
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  main .project-list .image-container {
    width: 100%;
  }
}
main .project-list .image-container img {
  object-fit: cover;
  width: 100%;
  height: auto;
  transform-origin: center;
  transform: translateY(var(--offset, 0));
  scale: var(--scale-image, 1);
}

html {
  box-sizing: border-box;
  font-size: 16px;
  height: 100%;
  scroll-behavior: smooth;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

p,
ul,
ol,
li {
  line-height: 175%;
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

table {
  width: 100%;
}

table,
th,
td {
  border-collapse: collapse;
  padding: 0.4rem;
}

a {
  text-decoration: none;
  color: inherit;
}

blockquote {
  border: none;
  padding: 0;
  margin: 0;
}

pre {
  border: none;
  padding: 0;
  margin: 0;
}

:root {
  --background: #f3f7fb;
  --text-hc: #121d39;
  --text-md: #77899f;
  --border: #d3e0ec;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #030302;
    --text-hc: #fcf2d7;
    --text-md: #a49f93;
    --border: #302f2d;
  }
}
@media (prefers-color-scheme: light) {
  body nav img {
    filter: invert(1);
  }
}

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