@font-face {
    font-family: "Inter";
    src: url(assets/fonts/Inter-VariableFont_slnt,wght.ttf);
}
*{
    box-sizing: border-box;
    font-family: "Inter";
}
.attribution { 
    font-size: 11px; 
    text-align: center; 
    color:hsl(0, 0%, 100%);
}
.attribution a { 
    color: hsl(228, 45%, 44%); 
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    padding: 0;
    margin: 0;

    background-color:hsl(0, 0%, 8%);
}
.container{
    width:300px;
    background-color: hsl(0, 0%, 12%);
    padding:20px;
    margin:15px;
    border-radius: 10px;

    display: flex;
    align-items: center;
    flex-direction: column;

}
#profile{
    border-radius:50%;
    width:70px;
}
.name{
    color:hsl(0, 0%, 100%);

}
.country{
    color:hsl(75, 94%, 57%);
    font-size: .7em;
    margin-top:10px;
}
h3,h5{
    margin-bottom:0;
}
.description{
    color:hsl(0, 0%, 100%);
    font-size: .7em;
}
ul{
    list-style-type: none;
    padding:0;
    margin:0;
    width: 100%;
}
ul li a{
    font-size:.7em;
    color:hsl(0, 0%, 100%);
    display: block;
    padding:10px;
    text-decoration:none;
    background-color:hsl(0, 0%, 20%);
    margin-bottom: 10px;
    border-radius:10px;
    text-align: center;
}
ul li a:hover{
    background-color:hsl(75, 94%, 57%);
    color:hsl(0, 0%, 12%);
}
