:root {
    --maxw: 720px;
    --text: #111;
    --muted: #666;
  }
  
  * { box-sizing: border-box; }
  
  body {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    color: var(--text);
    background: #fff;
    line-height: 1.6;
  }
  
  .site-head {
    text-align: center;
    padding: 64px 20px 40px;
  }
  
  .name {
    font-weight: 400;
    font-size: 2.6rem;
    letter-spacing: 0.0em;
    margin-bottom: 0.2em;
  }
  
  .tagline {
    margin-top: 0;
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 0;
  }
  
  .wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 20px 80px;
  }
  
  .bio p {
    margin-bottom: 1.2em;
  }
  
  .lead {
    font-size: 1.1rem;
  }
  
  .medium-links {
    margin-top: 40px;
    display: flex;
    gap: 24px;
  }
  
  .medium-links a {
    text-decoration: none;
    color: var(--text);
    border-bottom: 1px solid var(--text);
    padding-bottom: 2px;
  }
  
  .site-foot {
    text-align: center;
    padding: 20px;
    color: var(--muted);
    font-size: 0.9rem;
  }

  /* Default link style */
a {
    color: #272729; /* Blue */
    text-decoration: none; /* Removes default underline */
    transition: color 0.3s ease; /* Smooth color transition */
}

/* Style for when the mouse hovers over the link */
a:hover {
    color: #5b5757; /* A new color, e.g., Orange */
    text-decoration: none; /* Keep it underlined only on hover */
}

.windsong-regular {
    font-family: "WindSong", cursive;
    font-weight: 400;
    font-style: normal;
  }
  
  .windsong-medium {
    font-family: "WindSong", cursive;
    font-weight: 500;
    font-style: normal;
  }

  .medium-link {
    text-decoration: underline;
  }
  .instagram-row {
    margin-top: 0;
    display: flex;
    justify-content: center;
  }
  
  .instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.95rem;
  }
  
  .instagram-link i {
    font-size: 1rem;
  }
  
  .instagram-link:hover {
    color: var(--text);
  }
  
  