.{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}
body{
    background: black;
}

#Links-profile-container{
    margin: 5rem auto;
    width: 420px;
    height: 620px;
    background-color: #141414;
    display: flex;
    align-items: center;
    flex-direction: column;
    border-radius: 8px;
}
.avatar-img img{
    width: 88px;
    height: 88px;
    border-radius: 50%;
    margin-top: 2rem;
}

.Profile-Text{
    text-align: center;
}

.Profile-Text h1{
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    margin-top: 1.5rem;
}

.Profile-Text h4{
    color: #c5f82a;
    font-size: 14px;
    margin-top: .5rem;
}
.Profile-Text p{
    color: #ffffff;
    font-size: 14px;
    margin-top: 1.3rem; 
}

.Profile-Links-Container{
    margin-top: 1.5rem;
}

.Links-Menu li {
    list-style-type: none;
    width: 421px;
    height: 45px;
    text-align: center;
    margin: 1rem 0rem;
}

.Links-Menu li a {
    background-color: #333333;
    text-decoration: none;
    color: #ffffff;
    width: 384px;
    height:45px ;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-weight: 700px;
    transition: all .2s ease-in;
}

.Links-Menu li a:hover{
    background-color: #c5f82a;
    color: #141414;
}
