@font-face {
  font-family: "Lora";
  src: url("/public/fonts/lora.woff2") format("woff2");
  font-style: normal;
  font-weight: 125 950;
  font-stretch: 75% 125%;
}
@font-face {
  font-family: "Lora";
  src: url("/public/fonts/lora-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 125 950;
  font-stretch: 75% 125%;
}
@font-face {
  src: url("/public/fonts/robotomono-regular.woff2") format("woff2");
  font-style: normal;
  font-family: "Roboto Mono";
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lora", serif;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background: #fff;
}

.page-content {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
}

.landing {
  text-align: center;
  max-width: 480px;
  width: 100%;
}
.landing h1 {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}
.landing .tagline {
  font-size: 1.05rem;
  color: #6b7280;
  margin-bottom: 2.5rem;
}

.projects {
  text-align: left;
}

.project-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  text-decoration: none;
  color: #1a1a1a;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.project-card:hover {
  border-color: #c9cdd4;
  background: #f9fafb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.project-card:hover .project-arrow {
  transform: translateX(3px);
}

.project-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.project-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.project-title {
  font-family: "Roboto Mono", monospace;
  font-size: 0.9rem;
  font-weight: 500;
}

.project-desc {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 0.15rem;
}

.project-arrow {
  font-size: 1.2rem;
  color: #6b7280;
  flex-shrink: 0;
  transition: transform 0.2s;
}

/*# sourceMappingURL=main.css.map */