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;
}
.bio {
  margin-top: 2em;
  font-size: 1.05em;
}
.bio p {
  text-align: left;
}
.link-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}
.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;
}
.content {
  max-width: 650px;
  margin: 5rem auto;
  padding: 0 1rem;
}
form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
}
label {
  font-weight: bold;
  margin: 1rem 0 0.25rem;
}
input, textarea {
  font: inherit;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}
button {
  margin-top: 1.5rem;
  padding: 0.6rem 1.2rem;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 4px;
  font: inherit;
  cursor: pointer;
}
button:hover {
  background: #555;
}