@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    background-color: hsl(0, 0%, 8%);
    font-family: Inter, sans-serif;
    display: grid;
    place-content: center;
    min-height: 100vh;
}
.container{
    padding: 20px;
}
.card {
    background-color: hsl(0, 0%, 12%);
    max-width: 325px;
    text-align: center;
    padding: 30px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    min-height: 10vh;
}
.card img{
    border-radius: 50%;
    width: 30%;
    margin: 10px auto;
}
.name {
    color: white;
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 10px;
}
.location {
    color: hsl(75, 94%, 57%);
    font-size: 11px;
    font-weight: 600;
}
.info{
    color: white;
    font-size: 12px;
    margin: 25px 10px;
    font-weight: 300;
}  
ul li a{
    list-style: none;
    text-decoration: none;
    color: white;
    font-weight: 800;
}
.profile-links li {
    color: white;
    font-size: 13px;
    background-color: hsl(0, 0%, 20%);
    display: inline-block;
    padding: 0.7rem ;
    border-radius: 10px;
    width: 100%;
    margin-bottom: 1rem;
  }
  .container ul :hover{
    cursor: pointer; 
    background: hsl(75, 94%, 57%);
    color: black;
  }