* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Inter', sans-serif;
    background-color: hsl(0, 0%, 8%);
    color: hsl(0, 0%, 100%);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.card{
    width: 300px;
    border-radius: 20px;
    display: flex;
    background-color: hsl(0, 0%, 12%);
    align-items: center;
    justify-content: center;
    border: none;
    flex-direction: column;
    padding: 20px;
}

.img img{
    width: 100px;
    height: 100px;
    border-radius: 50%;

}

.info{
    margin-top: 1.5rem;
}

.info h1{
    font-weight: 700;
}

.info p{
    font-weight: 600;
    margin-top: .40rem;
    margin-bottom: .80rem;
    color: hsl(75, 94%, 57%);
}

span{
    font-weight: 400;
    margin-bottom: 1rem;
    font-size: smaller;
}

.links ul{
    list-style-type: none;
}

.links li{
    margin: 10px 0;
}


.links a{
    display: block; 
    text-decoration: none; 
    color: hsl(0, 0%, 100%);
    font-weight: 600;
    padding: 10px 60px;
    background-color: hsl(0, 0%, 20%);
    border-radius: 5px;
    text-align: center;

}

.links a:hover{
    background-color: hsl(75, 94%, 57%);
    transition: ease 0.5s;
    
}


@media screen and (max-width: 375px) {
    .card{
        width: 90px;
        height: auto;
    }
    
}
