glow button css
body {
background: #151b29;
display: flex;
justify-content: center;
}
button {
background: none;
color: #ffa260;
border: 2px solid;
padding: 10px;
align-self: center;
transition: all 0.2s;
}
button:hover{
border-color: #f1ff5c;
box-shadow: 1px 5px 3px 1px #f1ff5c;
color: #fff;
transform: translate(-3px, -7px);
}