*{
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
}

body{
    background-color:  black;
    font-family: "Inter", sans-serif
}

.profile-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 144px auto 0px;
    background-color:#141414 ;
    width: 384px;
    height: 700px;
    padding: 20px 60px 20px 60px;
}

.profile-image img{
    width: 130px;
    height: 130px;
    border-radius: 80%;
}

.profile-container h1{
    padding-top: 20px;
    color: #fff;
    font-weight: 500;

}

.profile-container h3{
    padding-top: 10px;
    color: #c5f82a;

}

.profile-container p{
    color: #fff;
    margin-top: 15px;
    font-weight: 300;
    padding-top: 20px;

}

a{
    display: none;
    text-decoration: none;
}

.list-item {
    display: flex;
    width: 350px;
    height: 45px;
    padding: 5px;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    font-weight: 600;
    color: #fff;
    border-radius: 8px; 
    background:#333333;
} 

.list-item:hover{
    background-color:  #c5f82a;
    color: #141414;
}
@media (min-width: 378px) {
    .profile-container {
        padding: 40px 30px;
      }
    
      .profile-image img {
        width: 120px;
        height: 120px;
      }
    
      .profile-container h1 {
        font-size: 1.8rem;
      }
    
      .list-item {
        font-size: 1rem;
      }
    }
    

    @media (max-width: 1200px) {
        .profile-container {
          padding: 40px 30px;
        }
      
        .profile-image img {
          width: 120px;
          height: 120px;
        }
      
        .profile-container h1 {
          font-size: 1.8rem;
        }
      
        .list-item {
          font-size: 1rem;
        }
      }
      

