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

body {
    font-family: "Inter", sans-serif;
    background: #141414;
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    padding: 20px;
}

.profile-card {
    width: 100%;
    max-width: 327px;        /* narrower on mobile */
    background: #1f1f1f;
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}
.profile-image {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    overflow: hidden;  /* This ensures the image corners are clipped */
}

.profile-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}


.description {
    color: #b3b3b3;
    font-size: 14px;
    text-align: center;
    margin-top: 12px;
    line-height: 1.5;
}


.social-link:hover {
    background-color: #C4F82A;
    color: #141414;
    cursor: pointer;
}

.profile-name {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 8px;
}

.location {
    color:#C4F82A;
    font-size: 14px;
    margin-bottom: 16px;
}

.social-button-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    width: 100%;
    max-width: 400px;
}

.social-link {
    width: 100%;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    justify-content: center;
    background-color: #333333;
    border: none;
    border-radius: 8px;
    height: 45px;
    display: flex;
    flex-direction: column;
    
}

/*  base styles (these apply to mobile by default) */
body {
  font-size: 14px;
  margin: 0;
  padding: 0;
}
 .profile-name {
    font-size: 20px;         
  }  
 

.container {
  width: 100%;
  padding: 1rem;
}


/*  media queries  */

@media (min-width: 768px) {
  .profile-card {
    max-width: 384px;       
  }
  
  .profile-name {
    font-size: 24px;         
  }  
  
}