@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Playfair+Display:ital,wght@0,500;0,600;1,500;1,600&display=swap');

:root {
  --black: #111111;
  --gray: #707070;
  --line: #dedede;
  --paper: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--black);
  font-family: "DM Sans", Arial, sans-serif;
}

a {
  color: inherit;
}

.page {
  width: min(760px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.mark {
  padding-top: 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.content {
  width: 100%;
  margin: auto 0;
  padding: 80px 0;
}

.since {
  margin: 0 0 14px;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gray);
}

h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(52px, 9vw, 92px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

h1 em {
  font-style: italic;
  font-weight: 500;
}

.intro {
  margin: 28px 0 38px;
  color: var(--gray);
  font-size: 16px;
  line-height: 1.75;
}

.links {
  border-top: 1px solid var(--black);
}

.link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 2px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  transition: padding .2s ease;
}

.link-card:hover {
  padding-left: 8px;
  padding-right: 8px;
}

.arrow {
  font-size: 20px;
  font-weight: 400;
  transition: transform .2s ease;
}

.link-card:hover .arrow {
  transform: translate(2px, -2px);
}

footer {
  padding: 22px 0 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--gray);
  font-size: 11px;
}

@media (max-width: 600px) {
  .page {
    width: min(100% - 28px, 760px);
  }

  .content {
    padding: 60px 0;
  }

  h1 {
    font-size: clamp(48px, 16vw, 78px);
  }

  footer {
    flex-direction: column;
    gap: 5px;
  }
}
