@import url('https://fonts.googleapis.com/css2?family=Charm:wght@400;700&family=Dela+Gothic+One&display=swap');


/* button neon */
.neon {
  box-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 20px #fff, 0 0 40px #228dff, 0 0 20px #228dff, 0 0 10px #228dff, 0 0 40px #228dff, 0 0 60px #228dff;
}

/* button base */
.bt {
  position: absolute;
  top: 150%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 0.3em;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.bt:hover {
  color: #000;
  background: #fff;
}
