* {
  margin: 0;
  padding: 0;
}
body{
    width: 1440px;
    background-color: rgb(20, 20, 20);
}
.inter{
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
.inter{
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}
.inter{
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
  }
.links-profile{
    display: flex;
    justify-content: center;
    margin: 70px;
    margin-top: 150px;
}
.container{
    font-family: "Inter", sans-serif;
    background-color:  rgb(31, 31, 31);
    width: 300px;
    text-align: center;
    border-radius: 20px;
    padding: 20px;

}
img{
    border-radius: 50%;
    width: 50%;
}
h1{
    color: rgb(255, 255, 255);
    margin-top: 15px;
}
h4{
    color: rgb(197, 248, 42);
    margin-top: 15px;
}
p{
    color: rgba(207, 203, 203, 0.649);
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 14px;
}
ul{
    justify-content: center;
}
li{
    background-color: rgb(51, 51, 51);
    border: 1px transparent solid;
    border-radius: 10px;
    padding: 10px;
    margin: 10px;
    list-style: none;
    cursor: pointer;
}
a{
    color: rgb(255, 255, 255);
    text-decoration: none;
}

li:hover{
    font-weight: bold;
    color: rgb(20, 20, 20);
    background-color: rgb(197, 248, 42);
}
li:hover a{
    color: rgb(20, 20, 20);
    background-color: rgb(197, 248, 42);
}
a:focus {
    color: rgb(20, 20, 20);
    background-color: rgb(197, 248, 42);
    outline: none;
    border: none;
    font-weight: bold;
}

li:has(a:focus){
    color: rgb(20, 20, 20);
    background-color: rgb(197, 248, 42);
}


.attribution { 
    font-family: "Inter", sans-serif;
    color: rgb(255, 255, 255);
    font-size: 16px; 
    text-align: center; 
}
.attribution a{
    color:rgba(255, 255, 255, 0.479);
}

@media screen and (max-width:375px){
    .container{
        width: 250px;
    }
    .attribution{
        font-size: 14px;
    }
    .attribution a{
        font-size: 14px;
    }
}