@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Outfit:wght@100..900&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

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

body {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: hsl(0, 0%, 8%);
  height: 100vh;
  font-family: "Poppins", sans-serif;
}

.container {
  /* width: 1040px; */
  justify-content: space-evenly;
  flex-wrap: wrap;
  width: 100%;
  /* background-color: hsl(0, 0%, 12%); */
  display: flex;
  /* justify-content: space-between; */
  /* flex-wrap: wrap; */
}

.profile-card {
  text-align: center;
  /* padding: 10px 0 10px 0; */
  border-radius: 15px;
  width: 350px;
  background-color: hsl(0, 0%, 12%);
  padding: 40px 20px 35px 20px;
}

.profile img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
}

.profile h1 {
  margin-top: 15px;
  font-size: 24px;
  color: hsl(0, 0%, 100%);
  font-weight: normal;
}

.profile .location {
  color: hsl(60, 100%, 50%);
  font-weight: 500;
  font-size: 14px;
  margin-top: 3px;
}

.profile p {
  font-size: 14px;
  margin: 18px 0 12px 0;
  color: white;
  font-weight: 300;
}

.social-links {
  display: flex;
  flex-direction: column;
  /* margin-bottom: 35px; */
}

.social-links button {
  background: hsl(0, 0%, 20%);
  padding: 14px;
  font-size: 14px;
  color: white;
  font-weight: 600;
  border: none;
  margin: 5px;
  border-radius: 10px;
}
