.attribution { 
    font-size: 11px;
    text-align: center;
    color: var(--color-white);
    margin-top: auto;
    padding: 1rem;
    width: 100%;
}
  
.attribution a { 
    color: var(--color-green);
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
  --color-green: hsl(75, 94%, 57%);
  --color-white: hsl(0, 0%, 100%);
  --color-grey-700: hsl(0, 0%, 20%);
  --color-grey-800: hsl(0, 0%, 12%);
  --color-grey-900: hsl(0, 0%, 8%);
}

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

body {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  background-color: var(--color-grey-900);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.profile-card {
  background-color: var(--color-grey-800);
  padding: 2rem;
  border-radius: 12px;
  width: 100%;
  max-width: 375px;
  text-align: center;
  margin-bottom: 2rem;
}

.profile-image {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.profile-name {
  color: var(--color-white);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.profile-location {
  color: var(--color-green);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.profile-bio {
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-link {
  background-color: var(--color-grey-700);
  color: var(--color-white);
  text-decoration: none;
  padding: 0.75rem;
  border-radius: 8px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--color-green);
  color: var(--color-grey-900);
}

@media screen and (min-width: 1440px) {
  .profile-card {
    max-width: 384px;
  }
}

@media screen and (max-width: 374px) {
  .profile-card {
    margin: 1rem;
  }
}