*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: 'Inter'; /* Choose a descriptive name for your font */
    src: url('assets/fonts/static/Inter-Regular.ttf') format('truetype'); /* Path to TTF file */
    font-weight: 800px; /* Optional: Define font weight if applicable */
    font-style: normal;  /* Optional: Define font style if applicable */
}
body, .main-item, .social-links{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
body{
    height: 100vh;
    background: hsl(0, 0%, 8%);
}
.main-item{
    width: 375px;
    height: 654px;
    background: hsl(0, 0%, 12%);
    border-radius: 20px;
}
.main-item>h2{
    color: hsl(0, 0%, 100%);
}
.main-item>h4{
    margin-bottom: 50px;
    color: hsl(75, 94%, 57%);
}

.social-links{
    gap: 10px;
}
.social-links button{
    font-family: 'Inter', 'Times New Roman', Times, serif;
    font-size: 14px;
    font-weight: bold;
    color: hsl(0, 0%, 100%);
    border-radius: 8px;
    background: hsl(0, 0%, 20%);
    padding: 10px 20px;
    width: 300px;
    height: 50px;
    -webkit-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    caret-color: transparent;
}
.social-links button:focus {
  caret-color: transparent;
  background: whitesmoke;
  color: black;
  font-weight: bold;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18); /* subtle ring */
}
.avatar {
  width: 96px;
  height: 96px;        
  border-radius: 50%;  
  object-fit: cover; 
  object-position: center;
  display: block;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15); 
  margin-bottom: 20px;
}
