@font-face {
    font-family:Inter;
    src: url(assets/fonts/static/Inter-Regular.ttf) format(ttf);
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter;
}
body{
    background-color: hsl(0, 0%, 8%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    flex-direction: column;
}
.container{
    background-color: hsl(0, 0%, 12%);
    max-width: 400px;
    padding:24px;
    border-radius: 10px;
}
ul{
    list-style-type: none;
}
.container img{
    width: 80px;
    height:80px;
    border-radius: 50%;
    display: block;
    margin-inline:auto;
    margin-bottom:1.25rem;
}
.container h1{
    font-size: 1.5rem;
    color: #fff;
    text-align: center;
    
}
.container h1 span{
    color: hsl(75, 94%, 57%);
    display: block;
    font-size: 1rem;
    margin:0.5rem 0 1rem;
/* 0.5 from the top 0 for left and right and 1rem for bottom */
}
.container p{
    color: #fff;
}
.container li{
    display: grid;
    background-color: hsl(0, 0%, 18%);
    border: 5px solid hsl(0, 0%, 18%) ;
    border-radius: 10px;
    outline: none;
    color: white;
    margin-bottom: 10px;
    font-weight: 400;
}
a{
    text-decoration: none;
    color: black;

}
.container a{
    color: white;
}
.btn:hover{
    background-color: hsl(75, 94%, 57%);
}
.attribution { 
    font-size: 11px; text-align: center;
    color: #fff;margin: 1rem;
     }
.attribution a {
     color: hsl(228, 45%, 44%); 
    }