:root {
  --White: hsl(0, 0%, 100%);
  --Green: hsl(75, 94%, 57%);
  --Grey-700: hsl(0, 0%, 20%);
  --Grey-800: hsl(0, 0%, 12%);
  --Grey-900: hsl(0, 0%, 8%);
}
@font-face {
  font-family: 'inter';
  src: url(./assets/fonts/Inter.ttf);
  font-weight: 400;
}
body {
  background-color: var(--Grey-900);
  color: var(--White);
  font-family: 'inter', sans-serif;
}

.container {
  max-width: 15rem;
  margin: 0 auto;
  padding: 1rem;
  background-color: var(--Grey-800);
  border-radius: 10px;
  margin-top: 5rem;
}

.profile {
  text-align: center;
}

.profile > img {
  border-radius: 50%;
  width: 4.2em;
  margin-top: 1.5rem;
}

.profile > h3 {
  margin-bottom: 0;
  font-weight: bold;
}

.profile-job {
  font-size: 0.6em;
  margin: 20px 0;
}

.profile-location {
  font-size: 0.7em;
  margin-top: 5px;
  color: var(--Green);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 12px;
  padding: 0 0.6em;
  margin-bottom: 10px;
}

.social-links > button {
  background-color: var(--Grey-700);
  flex: 0 1 2rem;
  border: none;
  border-radius: 5px;
  color: var(--White);
  font-weight: bold;
  font-size: 0.7em;
  cursor: pointer;
}

a {
  text-decoration: none;
  color: var(--White);
}
.social-links > button:hover {
  background-color: var(--Green);
  color: var(--Grey-700);
}
