  *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body{
    font-family: 'Inter', sans-serif;
     background-color:hsl(0, 0%, 8%);
     min-height: 100vh;
     display: flex;
     flex-direction: column;
     justify-content: center;
 }

.container{
   flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
  
.profile{
    max-width: 350px;
    width: 100%;
    background-color: hsl(0, 0%, 12%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2); 
}
  
.profile img{
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.info-profile{
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.info-profile .name{
    color: hsl(0, 0%, 100%);
    font-weight: 700;
    font-size: 1.5rem;

}

.info-profile .country{
    color: hsl(75, 94%, 57%);
    font-weight: 600;
    font-size: 0.95rem;
}



.bio{
     color: hsl(0, 0%, 100%);
    font-weight: 400;
    font-size: 0.94rem;
    margin-bottom: 1.5rem;
}

.list-links{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    padding: 0;
}


.list-links li, .list-links a{
    display: flex;
    list-style: none;
    color: hsl(0, 0%, 100%);
    background-color: hsl(0, 0%, 20%);
    width: 100%;
    height: 45px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    border-radius: .5rem;
    font-size: 1rem;
}
  
  @media (max-width: 400px) {
  .container {
    padding: 1rem;
  }
  .profile {
    max-width: 95vw;
    padding: 1.5rem 0.5rem;
  }
  .profile-img {
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
  }
  .info-profile .name {
    font-size: 1.1rem;
  }
  .bio {
    font-size: 0.85rem;
  }
  .list-links a {
    height: 40px;
    font-size: 0.95rem;
  }
}

.profile:hover{
    cursor: default;
}
  
  
  .list-links a:hover,
  .list-links a:focus{
    background-color: hsl(75, 94%, 57%);
    color: hsl(0, 0%, 8%);
  }
  
  
  
  
  
  /* FOOTER */
  .attribution { font-size: 11px; text-align: center; }
    .attribution a { color: hsl(228, 45%, 44%); }