body {
  font-family: 'Inter', sans-serif;
  background-color: black;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.card-wall{
  display: flex;
  justify-content: center;
  flex: 1;
  box-sizing: border-box;
  margin-top: 20px;
  align-items: flex-start;
  align-self: stretch;
}

.card-frame {
  display: flex;
  gap: 1.5rem;
  width: 100%;
  max-width: 1200px;
}

.card-frame h1 {
  color: white;
}

.card-frame p {
  color: #9AA0A6
}

.about-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #121212;
  border-radius: 24px;
  padding: 1.5rem;
  overflow-y: auto;
  border-style: solid;
  border-color: #dadce0;
  border-width: 1px;
}

.about-card:hover {
border: solid 1px #4285F4;
}

.profile-picture {
  width: 154px;
  height: 154px;
  border-radius: 50%;
  object-fit: cover;
}

.work-card-wall {
  flex: 3;
  display: flex;
  flex-direction: column;
}

.work-card-frame {
  height: 100%;
  box-sizing: border-box;
  background-color: #121212;
  border-radius: 24px;
  padding: 1.5rem;
  overflow-y: auto;
  border-style: solid;
  border-color: #dadce0;
  border-width: 1px;
}

.work-card-frame:hover {
  border: solid 1px #4285F4;
}

footer {
  color: #9AA0A6;
  text-align: center;
  padding: 36px;
  border-top: 1px solid #f1f3f414;
  align-self: stretch;
}

.work-item-card {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f1f3f414;
}

.work-item-card:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.work-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.work-item-title {
  color: white;
  margin: 0;
  font-size: 1.1rem;
}

.work-item-date {
  color: #80868b;
  font-size: 0.9rem;
  margin: 0;
  white-space: nowrap;
}

.work-item-description {
  color: #9AA0A6;
  padding-left: 0;
  margin: 0.5rem 15% 0 0;
  line-height: 1.6;
}

.work-item-tags {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  background-color: #303134;
  color: #e8eaed;
  padding: 4px 10px;
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 500;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0;
}

.social-button {
  background-color: #303134;
  color: #e8eaed;
  padding: 6px 14px;
  border-radius: 16px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.social-button:hover {
  background-color: #4285F4;
  color: white;
}

.project-link {
  color: #9AA0A6;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.project-link:hover {
  color: #4285F4;
}

.about-card-separator {
  width: 80%;
  border-bottom: 1px solid #f1f3f414;
  margin: 1rem 0;
}

.work-title {
  color: white;
  font-size: 1.5rem;
  margin: 0 0 1.5rem 0;
  font-weight: 600;
}

.about-card-email {
  color: #9AA0A6;
  font-size: 0.9rem;
  margin: 0;
  font-weight: 500;
}

.work-item-title-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-separator {
  color: #80868b;
  font-size: 1.1rem;
}