body {
  background-color: #FFF9F0;
  color: #292421;
  font-family: 'Open Sans', Arial, sans-serif;
  max-width: 800px;
  margin: 3em auto;
  padding: 0 1em;
  line-height: 1.6;
}
.home-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  font-size: 0.9em;
  opacity: 0.6;
  z-index: 1000;
}
.home-link a {
  color: inherit;
}
.home-link a:hover {
  opacity: 1;
  text-decoration: underline;
}
h1 {
  font-size: 2.6em;
  font-weight: 600;
  text-align: center;
}
p {
  text-align: center;
  font-size: 1.1em;
  margin-top: 0;
}
a {
  color: #292421;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.project-list-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* left-align the whole block */
  gap: 1em;
  margin-top: 2em;
}
.project-line {
  display: flex;
  flex-direction: row;
  justify-content: flex-end; /* right-align project names relative to taglines */
  gap: 1em;
  width: 100%;
  max-width: 700px; /* keep layout clean within the page */
}
.project-name {
  min-width: 12ch;
  text-align: right;
}
.project-name a {
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1em;
  color: #222;
}
.project-name a:hover {
  text-decoration: underline;
}
.project-tagline {
  font-style: italic;
  color: #555;
  max-width: 40ch;
}
strong {
  font-weight: bold;
}