.ui-btn {
  cursor: pointer;
  border-radius: 5px;
  color: #000;
  border-style: solid;
  background-color: transparent;
  border-color: rgb(51, 28, 210);
  width: 240px;
  height: 60px;
  transition: 0.2s ease;
  text-transform: uppercase;
  border-width: 2px;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 2px;
}
.ui-btn:hover {
  color: rgb(247, 247, 247);
  background-color: rgb(51, 28, 210);
  border-color: rgb(51, 28, 210);
  text-shadow: 0 0 50px white, 0 0 20px white, 0 0 15px white;
  box-shadow: 0 0 50px rgb(51, 28, 210), 0 0 30px rgb(51, 28, 210),
    0 0 60px rgb(51, 28, 210), 0 0 120px rgb(51, 28, 210);
  font-size: 20px;
  width: 220px;
  height: 60px;
  letter-spacing: 3px;
}
.ui-btn:active {
  width: 115px;
  height: 38px;
  letter-spacing: 0px;
}
