body {
  background-color: #f0f0f0;
  margin: 0;
  padding: 0;

  min-height: 100vh;
  min-height: -webkit-fill-available;
}

* {
  font-family: "Space Grotesk", serif;
  color: #262626;
}

data {
  display: none;
}

.tech-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
  align-items: center;
  mask-image: linear-gradient(black, transparent);
  max-height: 140px;
  overflow: hidden;
}

.profile-picture {
  width: max(10vw, 100px);
  height: max(10vw, 100px);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.profile-container {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}

.profile-right {
  align-content: space-evenly;
}

.profile-right > p {
  margin-top: 0;
}

.profile-links {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  flex-wrap: wrap;
}

.profile-links > a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.profile-links > a > p {
  margin: 0;
}

.post-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.post-item {
  padding: 8px 0;
  border-bottom: 1px solid #e5e7eb;
}
.post-item:last-child {
  border-bottom: none;
}
.post-item a {
  font-weight: 600;
  color: #1f2937;
  text-decoration: none;
}
.post-item a:hover {
  text-decoration: underline;
}
.post-date {
  display: block;
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 2px;
}