@font-face {
  font-family: "ms pgothic 12px";
  src: url(fonts/ms-pgothic-12px.woff2) format("woff2");
  font-display: block;
  unicode-range: U+0020-007E, U+00A0-00FF, U+2013-2014, U+2018-2019, U+201C-201D, U+2026, U+2122;
}

@font-face {
  font-family: "ms pgothic 14px";
  src: url(fonts/ms-pgothic-14px.woff2) format("woff2");
  font-display: block;
  unicode-range: U+0020-007E, U+00A0-00FF, U+2013-2014, U+2018-2019, U+201C-201D, U+2026, U+2122;
}

@font-face {
  font-family: "ms pgothic 12px";
  src: url(fonts/ms-pgothic-euro-12px.woff2) format("woff2");
  font-display: swap;
  unicode-range: U+0100-024F, U+0370-03FF, U+0400-04FF, U+2500-257F;
}

@font-face {
  font-family: "ms pgothic 14px";
  src: url(fonts/ms-pgothic-euro-14px.woff2) format("woff2");
  font-display: swap;
  unicode-range: U+0100-024F, U+0370-03FF, U+0400-04FF, U+2500-257F;
}

@font-face {
  font-family: "ms pgothic 12px";
  src: url(fonts/ms-pgothic-kana-12px.woff2) format("woff2");
  font-display: swap;
  unicode-range: U+3000-30FF, U+FF00-FFEF;
}

@font-face {
  font-family: "ms pgothic 14px";
  src: url(fonts/ms-pgothic-kana-14px.woff2) format("woff2");
  font-display: swap;
  unicode-range: U+3000-30FF, U+FF00-FFEF;
}

@font-face {
  font-family: "ms pgothic 12px";
  src: url(fonts/ms-pgothic-han-12px.woff2) format("woff2");
  font-display: swap;
  unicode-range: U+4E00-9FFF, U+F900-FAFF;
}

@font-face {
  font-family: "ms pgothic 14px";
  src: url(fonts/ms-pgothic-han-14px.woff2) format("woff2");
  font-display: swap;
  unicode-range: U+4E00-9FFF, U+F900-FAFF;
}

@font-face {
  font-family: "simsun 12px";
  src: url(fonts/simsun-han-12px.woff2) format("woff2");
  font-display: swap;
  unicode-range: U+4E00-9FFF, U+F900-FAFF;
}

@font-face {
  font-family: "simsun 14px";
  src: url(fonts/simsun-han-14px.woff2) format("woff2");
  font-display: swap;
  unicode-range: U+4E00-9FFF, U+F900-FAFF;
}

@font-face {
  font-family: "dotum 12px";
  src: url(fonts/dotum-hangul-12px.woff2) format("woff2");
  font-display: swap;
  unicode-range: U+1100-11FF, U+3130-318F, U+AC00-D7A3;
}

@font-face {
  font-family: "dotum 14px";
  src: url(fonts/dotum-hangul-14px.woff2) format("woff2");
  font-display: swap;
  unicode-range: U+1100-11FF, U+3130-318F, U+AC00-D7A3;
}

:root {
  --pixel-stack: "ms pgothic 12px", "dotum 12px";
}

:lang(zh) {
  --pixel-stack: "simsun 12px", "ms pgothic 12px", "dotum 12px";
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  background: #000;
  color: #fff;
  color-scheme: dark;
  font-family: var(--pixel-stack), ui-sans-serif, system-ui, sans-serif;
  font-synthesis: none;
}

h1,
p {
  margin: 0;
}

h1 {
  font-size: 24px;
  font-weight: 400;
}

p {
  font-size: 12px;
  line-height: 18px;
  color: rgb(255 255 255 / 0.8);
}

a {
  color: rgb(255 255 255 / 0.6);
  text-decoration: underline;
}

a:hover {
  color: rgb(255 255 255 / 0.8);
}

.card {
  width: 100%;
  max-width: 320px;
  padding: 40px 32px 80px;
}

svg {
  display: block;
  width: 206.5px;
  max-width: 100%;
  height: auto;
  margin: 0 auto 24px;
}

.cols {
  display: grid;
  gap: 24px;
}

.cols > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.name {
  gap: 4px;
}

.about {
  gap: 8px;
}

@media (min-width: 768px) {
  :root {
    --pixel-stack: "ms pgothic 14px", "dotum 14px";
  }

  :lang(zh) {
    --pixel-stack: "simsun 14px", "ms pgothic 14px", "dotum 14px";
  }

  h1 {
    font-size: 28px;
  }

  p {
    font-size: 14px;
    line-height: 22px;
  }

  .card {
    max-width: 520px;
    padding: 40px 12px 80px;
  }

  svg {
    width: 260px;
    margin-bottom: 28px;
  }

  .cols {
    grid-template-columns: 140px 1fr;
    gap: 0 24px;
  }

  .cols > div {
    align-items: flex-start;
    text-align: left;
  }
}
