@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  --grey-700: hsl(0, 0%, 20%);
  --grey-800: hsl(0, 0%, 12%);
  --grey-900: hsl(0, 0%, 8%);
  --green: hsl(75, 94%, 57%);
}
body {
  font-family: "Inter", serif;
  background-color: var(--grey-900);
}
main {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.user_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2.2rem;

  background-color: var(--grey-800);
  width: 375px;

  border-radius: 0.6rem;
  box-sizing: border-box;
}
.user_details_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.user_name {
  color: white;
  font-size: 1.4rem;
  font-weight: 500;
}
.user_location {
  color: var(--green);
  font-weight: 600;
}
.user_position {
  color: white;
  font-size: 14px;
}
.user_profile {
  border-radius: 50%;
  width: 100px;
  height: 100px;
}
.social_links {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 1rem;
}
.social_links-btn {
  background-color: var(--grey-700);
  border: none;
  border-radius: 0.5rem;

  width: 100%;
  padding: 1rem;
  transition: 0.2s;
}
a > button {
  text-decoration: none;
  color: white;
  font-weight: 700;
}
.social_links-btn:hover {
  background-color: var(--green);
  color: black;
}

@media screen and (max-width: 430px) {
  body {
    padding: 1rem;
  }
  .user_wrapper {
    padding: 1.5rem;
  }
}
