/* font family link is here */
@import url("https://fonts.googleapis.com/css2?family=Inter:opsz@14..32&display=swap");

* {
  margin: 0;
  padding: 0;
  list-style-type: none;
  box-sizing: border-box;
  text-decoration: none;
}

:root {
  --Green: hsl(75, 94%, 57%);

  --White: hsl(0, 0%, 100%);

  --Grey-700: hsl(0, 0%, 20%);
  --Grey-800: hsl(0, 0%, 12%);
  --Grey-900: hsl(0, 0%, 8%);
}
body {
  font-family: "Inter", sans-serif;
}
body p {
  font-size: 14px;
}

.container {
  align-items: center;
  background-color: var(--Grey-900);
  color: var(--White);
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
}
.card {
  border-radius: 7px;
  background-color: var(--Grey-800);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 350px;
  padding-block: 2rem;
}
.profile-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.profile-info img {
  border-radius: 50pc;
  width: 27%;
}
.profile-info h1 {
  font-weight: 500;
}
.profile-info h4 {
  color: var(--Green);
}
.user-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
}
.user-links .links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  width: 100%;
}
.links button {
  border: none;
  border-radius: 7px;
  background-color: var(--Grey-700);
  font-weight: 600;
  width: 100%;
  padding: 0.8rem;
  color: var(--White);
}
.links button:hover {
  background-color: var(--Green);
  color: var(--Grey-900);
  cursor: pointer;
  transition: all ease-in 0.3s;
}

/* footer style is here */
.attribution {
  font-size: 11px;
  text-align: center;
}
.attribution a {
  color: hsl(228, 45%, 44%);
}
