*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #0f0f0f;
  color: #e8e8e8;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 2rem;
  width: 100%;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

header h1 {
  font-size: 1.625rem;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: #fff;
}

header p {
  font-size: 0.9375rem;
  color: #888;
}

.projects {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 280px;
}

.card {
  background: rgba(26, 26, 26, 0.5);
  border: 1px solid rgba(42, 42, 42, 0.7);
  border-radius: 10px;
  padding: 20px 24px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, background 0.15s;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.card:hover {
  border-color: #555;
  background: #222;
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.card-desc {
  font-size: 0.8125rem;
  color: #888;
  line-height: 1.4;
}

.card-url {
  font-size: 0.75rem;
  color: #555;
  margin-top: 0.25rem;
}

footer {
  flex-shrink: 0;
  padding: 16px 24px 24px;
  font-size: 0.65rem;
  color: #444;
  text-align: center;
  line-height: 1.6;
}
