:root {
  --bg-color: #f7f7f5;
  --text-color: #333;
  --accent-color: #556b2f;
  --link-color: #2a5a8a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

header,
main {
  max-width: 40rem;
  margin: 0 auto;
  padding: 1.5rem;
  text-align: center;
}

header {
  padding-top: 3rem;
}

h1 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.subtitle {
  margin: 0;
  font-size: 1rem;
  color: #555;
}

.portrait {
  margin: 2rem 0;
}

.portrait img {
  max-width: 100%;
  height: auto;
  border-radius: 0.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.intro p,
.contact p {
  text-align: justify;
  hyphens: auto;
}

.focus h2 {
  font-size: 1.1rem;
  margin-top: 2rem;
  text-decoration: underline;
  text-decoration-color: var(--accent-color);
}

.focus ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.focus li {
  margin: 0.4rem 0;
}

.contact {
  margin-top: 2.5rem;
  font-size: 0.95rem;
}

.contact p {
  text-align: center;
  margin: 0.25rem 0;
}

a {
  color: var(--link-color);
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}
