@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

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

:root {
  --primary-bg-color: hsl(0, 0%, 8%);
  --secondary-bg-color: hsl(0, 0%, 12%);
  --tertiary-bg-color: hsl(0, 0%, 20%);
  --hover-bg: hsl(75, 94%, 57%);
  --font-color: hsl(0, 0%, 100%);
}

body {
  background-color: var(--primary-bg-color);
  color: var(--font-color);
  font-family: "Inter", sans-serif;
  width: min(100%, 90rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-inline: auto;
  padding-inline: 1.5rem;
  min-height: 100dvh;
}

.wrapper {
  background-color: var(--secondary-bg-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  width: min(100%, 24rem);
  padding: 2rem;
  border-radius: .5rem;
}

.bio {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.bio img {
  width: 5.3125rem;
  border-radius: 50%;

}

.findMe {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.name {
  font-size: 1.35rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05rem;
}

.location {
  color: var(--hover-bg);
  font-size: .875rem;
  text-align: center;
}

.title {
  font-size: .875rem;
}

.social-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.social-links a {
  background-color: var(--tertiary-bg-color);
  color: var(--font-color);
  font-size: .875rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 0.8rem 0;
  border-radius: .5rem;
}

.social-links a:hover {
  background-color: var(--hover-bg);
  color: var(--primary-bg-color);
}

footer {
  font-size: .8rem;
  text-align: center;
  position: absolute;
  bottom: 1.4rem;
}

footer p>a {
  color: inherit;
}

footer p a:hover {
  color: var(--hover-bg);
}