body {
  background: #ffffff;
}
.glow-button {
  text-decoration: none;
  display: inline-block;
  padding: 15px 30px;
  margin: 10px 20px;
  border-radius: 10px;
  box-shadow: 0 0 40px 40px #EC1D47 inset, 0 0 0 0 #EC1D47;
  font-family: 'Proximanova', sans-serif;
  font-weight: bold;
  letter-spacing: 2px;
  color: white;
  transition: .15s ease-in-out;
}
.glow-button:hover {
  box-shadow: 0 0 10px 0 #EC1D47 inset, 0 0 10px 4px #EC1D47;
  color: #EC1D47;
}