@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg: #f4f1ea;
  --text: #171717;
  --muted: #77736b;
  --line: #d8d3c8;
  --accent: #ff4d00;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);

  font-family: "Space Grotesk", sans-serif;
}

main {
  width: min(90%, 760px);
  margin: 0 auto;
  padding: 120px 0;
}

hr {
  border: 0;
  border-top: 1px solid var(--line);
}

#contact h3 {
  margin: 0 0 35px;

  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

#contact h3::before {
  content: "";
  color: var(--accent);

  font-family: "DM Mono", monospace;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  vertical-align: middle;
}

#contact ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#contact li {
  border-top: 1px solid var(--line);
}

#contact li:last-child {
  border-bottom: 1px solid var(--line);
}

#contact a {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 18px 4px;

  color: var(--text);
  text-decoration: none;

  font-family: "DM Mono", monospace;
  font-size: 15px;

  transition: all 0.25s ease;
}

#contact a::after {
  content: "↗";
  color: var(--muted);
  transition: transform 0.25s ease;
}

#contact a:hover {
  color: var(--accent);
  padding-left: 12px;
}

#contact a:hover::after {
  color: var(--accent);
  transform: translate(4px, -4px);
}