/* General styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
h1 {
  line-height: 1.1;
}
ul li {
  list-style: none;
}

a {
  color: hsl(0, 0%, 100%);
  text-decoration: none;
}
body {
  font-family: sans-serif;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: hsl(0, 0%, 100%);
  background-color: hsl(0, 0%, 8%);
}

/* User Profile styling */
.user-name {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.user-location {
  color: hsl(75, 94%, 57%);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.list-items {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.7rem;
  border-radius: 0.3rem;
  background-color: hsl(0, 0%, 20%);
}
.list-items:hover {
  color: black;
  background-color: hsl(75, 94%, 57%);
}

/* layout Styling */
.wrapper {
  display: grid;
  place-items: center;
  min-height: 100dvh;
}

.profile-container {
  width: 25rem;
  padding: 1.75rem;
  background-color: hsl(0, 0%, 12%);
}
.social-links > * + * {
  margin-top: 0.75rem;
}
.social-links {
  margin-top: 2rem;
}
img {
  width: 6rem;
  margin-bottom: 2rem;
  border-radius: 50%;
}
