body {
    font-family: "JetBrains Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 50px;
}

.project-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding-bottom: 1rem;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.project-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}
.project-card h3 {
  margin: 1rem 0 0.5rem;
}
.project-card p {
  margin: 0 1rem 1rem;
  color: #555;
  font-size: 0.95rem;
}
.project-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

#projects {
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) { /* tablet */
  #projects {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) { /* phone */
  #projects {
    grid-template-columns: 1fr;
  }
}

#pfp {
    border-radius: 10rem;
    width: 50px;
}