@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 62.5%;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  color: hsl(0, 0%, 100%);
  background: hsl(0, 0%, 8%);
  font-family: "Inter" serif;
  font-size: 1.6rem;
}
.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 40rem;
  background-color: hsl(0, 0%, 12%);
  padding: 3rem 3rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 1rem 1rem hsl(0, 0%, 15%);
}
.container img {
  border-radius: 50%;
  height: 12rem;
  width: 12rem;
  border: 1px solid rgb(126, 124, 124);
  object-fit: cover;
}
.title {
  padding: 2rem 0;
  text-align: center;
  line-height: 2rem;
}
.title--name {
  letter-spacing: 2px;
}
.title p {
  color: hsl(75, 94%, 57%);
  margin-top: 1rem;
}

.social-link-lists {
  padding-top: 1.7rem;
  list-style: none;
}

.social-link {
  display: inline-block;
  background: hsl(0, 0%, 20%);
  color: hsl(0, 0%, 100%);
  text-decoration: none;

  margin: 1rem;
  min-width: 33rem;
  padding: 1rem 4rem;
  border-radius: 0.5rem;
  text-align: center;
}
.social-link:hover {
  background-color: hsl(75, 94%, 57%);
  color: hsl(0, 0%, 0%);
}
