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

html {
  height: 90vh;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: hsl(0, 0%, 8%);
}

.card {
  width: 350px;
  height: auto; 
  background-color: hsl(0, 0%, 12%);
  border-radius: 15px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: block;
  margin-bottom: 20px;
}

h1 {
  color: hsl(0, 0%, 100%);
  font-weight: 600;
  font-size: 25px;
  text-align: center;
}

h2 {
  font-size: 1rem;
  font-weight: 400;
  color: hsl(75, 94%, 57%);
  margin-top: 8px;
  text-align: center;
}

p {
  margin-top: 20px;
  color: hsl(0, 0%, 100%);
  text-align: center;
  line-height: 1.4;
  max-width: 90%;
}

.social-links {
  margin-top: 25px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

ul li {
  margin-top: 15px;
  width: 100%;
  display: flex;
  justify-content: center;
}

ul li a {
  width: 80%;
  display: block;
  text-decoration: none;
  color: hsl(0, 0%, 100%);
  background-color: hsl(0, 0%, 20%);
  padding: 12px 16px;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease;
}

ul li a:hover {
  background-color: hsl(75, 94%, 57%);
  color: hsl(0, 0%, 20%);
  cursor: pointer;
}
