@font-face {
    font-family: "Inter";
    src: url("./assets/fonts/Inter-VariableFont_slnt,wght.ttf") format("truetype");
}

    *{
    margin: 0;
    padding: 0;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "inter";
    background-color: hsl(0, 0%, 8%);
    color: hsl(0, 0%, 100%);
    height: 100vh;
    
    
}

.card{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px;
    width: 300px;
    background-color:hsl(0, 0%, 12%);
    border-radius: 12px;
    
}

img{
    height: 150px;
    border-radius: 50%;
    padding: 20px;
};

h1{

}

h2{
    color: hsl(75, 94%, 57%);
}

h3{
    
    padding: 20px;
    opacity: 70%;
}

ul{
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

li{  
    display: flex;
    flex-direction: column;
    align-items: center;
    color:hsl(0, 0%, 100%);
    background-color: hsl(0, 0%, 20%);
    padding: 20px;
    width: 400px;
    border-radius: 12px;
    cursor:pointer;
}

li:hover{
    background-color: hsl(75, 94%, 57%);
    color: hsl(0, 0%, 20%);
    transition: background-color 0.5s,transform 0.5s;
    transform: scale(1.05);
}