/* portfolio.css — lightweight serif stylesheet */

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 18px;
}

body {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #1a1a1a;
  background: #fff;
  max-width: 46rem;
  margin: 4rem auto;
  padding: 0 1.5rem;
}

/* Header */
h1 {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.01em;
  margin-bottom: 0.25rem;
}

.email {
  font-size: 1rem;
  color: #444;
  margin-bottom: 2.5rem;
}

hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 1.5rem 0;
}

/* Section headings */
h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

h4 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.section-desc {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
}

/* Notes list */
ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

ul li a {
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

ul li a:hover {
  color: #555;
}

/* a {
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 2px;
} */

/* Tags */
.tag {
  font-size: 0.85rem;
  color: #888;
  margin-left: 0.3em;
}

/* Copyright License */
.copyright-license {
  font-size: 0.85rem;
  color: #888;
  margin-left: 0.3em;
}

.copyright-license a {
  color: #888;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Logo */
.logo {
  width: 11%;
  max-width: 120px;   /* cap on large screens */
  min-width: 48px;    /* floor on small screens */
  height: auto;
}