body {
  margin: 0;
  font-family: sans-serif;
  color: #111;
  background: #fafafa;
  line-height: 1.6;
}

.site-header {
  margin: 0 0 1rem -1rem;
}

.cross-header {
  position: relative;
  padding: 1rem;
  margin: 0 auto;
  border-bottom: 1px solid black;
  font-family: sans-serif;
  font-size: 2rem;
  font-weight: normal;
  width: max-content;
}

/* Left vertical bar */
.cross-header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 150%; /* extends below the bottom border */
  background: black;
}

/* Bottom horizontal extension */
.cross-header::after {
  content: "";
  position: absolute;
  left: -2rem; /* extend beyond the left border */
  bottom: -1px;
  width: 2rem;
  height: 1px;
  background: black;
}

.resume {
  text-align: center;
  margin-bottom: 0;
}

main {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
}

section {
  margin-bottom: 3rem;
}

h2 {
  font-weight: normal;
  margin-bottom: 0.5rem;
}

a, a:visited {
  color: #007acc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.project-item {
  padding: 1.5rem;
  border: 1px solid #999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.project-item h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.project-item p {
  color: #333333;
  font-size: 0.95rem;
  line-height: 1.5;
  flex-grow: 1;
}

.project-links {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}

.project-links a {
  color: #007acc;
  text-decoration: none;
  border: 1px solid #007acc;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.project-links a:hover {
  background-color: #007acc;
  color: #ffffff;
}
