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

body {
    width: 100vw;
    height: 100vh;
    background-color: hsl(0, 0%, 8%);

    font-family: "Inter", cursive;
    color : hsl(0, 0%, 100%);

    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
}

.container {
    width: 20%;
    min-height: 60%;
    background-color: hsl(0, 0%, 12%);

    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;

    border-radius: 2%;
}   

.user-img {
    width: 30%;

    border-radius: 50%;

    margin: 1.5em;
}

.username {
    margin-bottom: 0.45em;
    font-weight: 400;
}

.user-address {
    color: hsl(75, 94%, 57%);
    font-size: 0.85em;
    font-weight: 600;
    
    margin-bottom: 0.75em;
}

.user-profession {
    margin-top: 0.75em;

    font-size: 0.8em;
    font-weight: 400;
}

.user-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.social-links {
    width: 90%;
    /* margin: 1.65em; */

}

a {
    color: hsl(0, 0%, 100%);
    text-decoration: none;

    font-weight: 600;
}


.social-media {
    width: auto;
    height: 3em;

    background-color: hsl(0, 0%, 20%);

    display: flex;
    justify-content: center;
    align-items: center;

    margin: 1em 2em;

    border-radius: 1em;

    transition: background-color .5s ease, color .5s ease;
    
}

.social-media:hover {
    background-color: hsl(75, 94%, 57%);
    color: hsl(0, 0%, 20%) ;
}






















































































































































