body{
  background-color: #000000;
}

.sha-dow{
  box-shadow: 0 0 10px white ,
             inset 0 0 10px white ,
              0 0 10px white ,
              0 0 10px white ;
  padding: 10px;
  border: 0px solid black;
  border-radius: 10px;
  transition: transform 0.9s ease-in-out;

  
}

.sha-dow:hover{
}


.card{
  box-shadow: 0 0 10px #000000 ,
             inset 0 0 30px lightpink ,
              5px 0 10px lightslategray ,
              0 5px 10px #000000 ;
  transition: transform 0.9s ease-in-out;
  margin-top: 10px;
}

.card:hover{
  transform: rotateZ(-10deg);
}

