:root {
    --NeonGreen: #c5f82a;
    --White: #fff;

    --Grey-700: #333333;
    --Grey-800: #1f1f1f;
    --Grey-900: #141414;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    background-color: var(--Grey-900);
}

#links-profile-container {
    margin: 5rem auto;
    width: 384px;
    height: 550px;
    background-color: var(--Grey-800);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 8px;
}

.avatar-img img{
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
    margin-top: 2rem;
}

.profile-text {
    text-align: center;
}

.profile-text h1 {
    color: var(--White);
    font-weight: bold;
    font-size: 24px;
    margin-top: 1.5rem;
}

.profile-text h4 {
    color: var(--NeonGreen);
    font-size: 14px;
    margin-top: .5rem;
}

.profile-text p {
    color: var(--White);
    font-size: 14px;
    margin-top: 1.5rem;
}

.profile-links-container {
    margin-top: 1.5rem;
}

.links-menu li {
    list-style: none;
    text-align: center;
    width: 304px;
    height: 45px;
    margin: 1rem 0;
}

.links-menu li a {
    background-color: var(--Grey-700);
    text-decoration: none;
    color: var(--White);
    width: 304px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    transition: all .2s ease-in;
}

.links-menu li a:hover {
    background-color: var(--NeonGreen);
    color: var(--Grey-800);
}

/*Media Queries*/
@media screen and (max-width: 500px) {
    #links-profile-container {
        width: 90%;
        height: 550px;
    }

    .links-menu li a {
        width: 85%;
        margin-right: auto;
        margin-left: auto;
    }
}