@font-face {
  font-family: 'Inter';
  src: url('./assets/fonts/static/Inter-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('./assets/fonts/static/Inter-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('./assets/fonts/static/Inter-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Inter', sans-serif;
  background-color: hsl(0, 0%, 8%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
}
.container {
  background-color: hsl(0, 0%, 12%);
  border-radius: 20px;
  width: 100%;
  max-width: 440px;
  text-align: center;
  padding: 40px;
  gap: 18px;
  display: flex;
  flex-direction: column;
}
.image img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
}
.name-address{
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 12px 0;
}
.name-address h1{
  color: hsl(0, 0%, 100%);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.2px;
}
.name-address p{
  color: hsl(75, 94%, 57%);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2px;
}
.description{
  color: #AAAAAA;
  font-size: 14px;
  font-weight: 400;
}

.social-links {
  list-style-type: none; /* 移除列表默认的小圆点 */
  padding: 0;            /* 移除列表默认的内边距 */
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.social-links a {
  display: block;
  padding: 16px;

  background-color: #333333;
  border-radius: 10px;

  color: #FFFFFF;
  /* 移除默认下划线 */
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
}