:root{
    --bg: #161616;
    --text: #eaeaea;
    --muted: #9a9a9a;
    --link: #eaeaea;
  }
  
  *{ box-sizing: border-box; }
  html, body{ margin: 0; padding: 0; }
  
  body{
    background: var(--bg);
    color: var(--text);
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }
  
  /* Keep vertical spacing like before */
  .wrap{
    padding: 88px 24px;
  }
  
  /* Horizontally center only */
  .content{
    max-width: 620px;
    margin: 0 auto;
    width: 100%;
  }
  
  .mark{
    width: 98px;
    height: 98px;
    display: block;
    margin: 0 0 48px 0;
  }
  
  /* Smooth fade between colors */
  .mark circle{
    transition: fill 0.18s ease;
  }
  
  h1{
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 0px 0;
  }
  
  .sub{
    margin: 0 0 22px 0;
    color: var(--muted);
    font-size: 16px;
  }
  
  p{
    margin: 0 0 30px 0;
    font-size: 16px;
    max-width: 58ch;
  }
  
  .contact{
    margin-top: 22px;
  }
  
  .links{
    font-size: 14px;   /* change this to whatever you want */
    margin-top: 12px;  /* optional spacing */
  }
  /* Links: no underline on the <a> itself */
.links a{
    color: var(--link);
    text-decoration: none;
  }
  
  /* Underline only the text */
  .links a span{
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
    text-decoration-color: rgba(255,255,255,0.35);
    text-underline-offset: 2px;
  }
  
  /* Separator */
  .links a:not(:last-child)::after{
    content: " · ";
    opacity: 0.6;
    text-decoration: none; /* belt + braces */
  }
  
  /* Hover */
  .links a:hover{
    opacity: 0.6;
  }
  
  a{
    color: var(--link);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  
  a:hover{
    opacity: 0.8;
  }