CSS NEON Light hover effect



This is a css code of css hover neon light effect. it's an amazing effect of lighting on your website design




 <div class="card">
  <div class="inside">Hover Me</div>
</div>                    
                  
                



 * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
}
body {
  background-color: #212121;
}
.card {
  margin: 150px auto;
  width: 200px;
  height: 300px;
  color: #fff;
  background-image: linear-gradient(163deg, #00ff75 0%, #3700ff 100%);
  border-radius: 20px;
  position: relative;
  transition: 0.3s;
  cursor: pointer;
}
.card .inside {
  width: 200px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1a1a1a;
  border-radius: 0px;
  transition: 0.3s;
}
.inside:hover {
  transform: scale(0.95);
  border-radius: 20px;
  color: #5b3ec4;
}
.card:hover {
  box-shadow: 0px 0px 30px 1px rgba(0, 255, 117, 0.3);
}