body {
  min-height: 100vh;
  height: auto;
  justify-content: flex-start;
  padding: 48px 20px 60px;
  box-sizing: border-box;
}

.page-header {
  width: 100%;
  max-width: 520px;
  margin-bottom: 28px;
}

.page-header h1 {
  font-size: 11px;
  font-weight: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.45;
  margin: 0 0 4px;
}

.projects {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 520px;
}

.card {
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.3);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  text-decoration: none;
  color: white;
  display: block;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.card-image {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.card-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.card-title {
  font-size: 19px;
  font-weight: bold;
  line-height: 1;
  margin: 0;
}

.card-url {
  font-size: 11px;
  opacity: 0.4;
  white-space: nowrap;
}

.card-description {
  font-size: 13px;
  opacity: 0.7;
  margin: 0;
  line-height: 1.5;
}

.card-footer {
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.made-with {
  font-size: 10px;
  opacity: 0.35;
  display: flex;
  align-items: center;
  gap: 4px;
}

.made-with img {
  width: 12px;
  height: 12px;
  border-radius: 2px;
}

nav {
  margin-top: 36px;
  text-align: center;
  opacity: 0.5;
  font-size: 13px;
}
