@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Outfit:wght@100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body{
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    background-color: hsl(0, 0%, 8%);
    font-size: 14px;
    color: hsl(0, 0%, 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
}

.attribution{
    position: fixed;
    bottom: 10px;
    text-align: center;
}

.card{
    height: 600px;
    width: 370px;
    background-color: hsl(0, 0%, 12%);
    border-radius: 15px;
}

ul{
    list-style-type: none;
}

.photo{
    display: block;
    margin: auto;
    border-radius: 50%;
    margin-top: 30px;
    margin-bottom: 20px;
    height: 85px;
}

.top{
    display: flex;
    line-height: 30px;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.top ul li:first-child{
    font-weight: 600;
    font-size: x-large;
}

.top span{
    
    color: hsl(75, 94%, 57%);
}

p{
    margin-top: 18px;
    display: flex;
    justify-content: center;
}

.social{
    display: flex;
    margin-top: 18px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    line-height:45px;
}

.social li{
    background-color: hsl(0, 0%, 20%);
    margin-bottom: 18px;
    width: 290px;
    border-radius: 12px;
}

.social li:hover{
    background-color: hsl(75, 94%, 57%);
    cursor: pointer;
    color: hsl(0, 0%, 8%);
    
}