*{
    box-sizing: border-box;

}

body{
    display: grid;
    height: 100vh;
    align-items: center;
  
    background-color: rgba(4, 4, 4, 0.95);
}
.container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:center;
    padding: 10px;
    border-radius: 2ch;
    width: 18rem;
    background-color: rgba(22, 22, 22, 0.9);
    margin-right: auto;
    margin-left:auto;
}
.profile-container{
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
     color: white;
}
.user-profile h3{
 margin-bottom: 3px;
}
.user-profile img{
    width:95px;
    border-radius: 3rem;
}
.user-profile small{
    font-weight: bold;
    color: rgb(129, 220, 38);
}
.socials a{
    display: block;
    width:15rem;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    margin:1rem ;
    border-radius: 1ch;
    background-color: rgba(46, 46, 46, 0.8);
    color:white; 
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}
.socials :hover{
    background-color: rgb(129, 220, 38);
    color: black;
}



footer{
    color: white;
}

 .attribution{ 
    font-size: 11px;
    text-align: center;
}
    .attribution a { 
    color: hsl(228, 45%, 44%); 
}