@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

*{
  font-family: "Inter",sans-serif;
  color: #fff;
  margin: 0;
  padding: 0;
}
a,a:hover,a:active{
  color: #fff;
  text-decoration: none;
}


body{
  background:  hsl(0, 0%, 8%);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.card{
  margin: 10px;
  width: 300px;
  background: hsl(0, 0%, 12%);
  padding: 30px 30px;
  text-align: center;
  border-radius: 10px;
}

.img{
  height: 80px;
  width: 80px;
  margin: auto;
  
}
.img img{
  width: 100%;
  border-radius: 50px;
}

.content h2{
  font-weight: 600;
  margin-bottom: 0;
}

.p1{
  color: hsl(75, 94%, 57%);
  margin-top: 5px;
  font-size: 0.9rem;
  text-transform: capitalize;
}

p{
  font-size: 0.8rem;
  text-transform: capitalize;
  margin: 30px 0;
}

ul{
  list-style-type: none;
  
}

ul li{
  margin: 15px 0;
  background-color: hsl(0, 0%, 20%);
  padding: 15px 0;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
  font-weight: 600;
}


ul li:hover{
  background-color: hsl(75, 94%, 57%);
  color: #000;
}

