.hero-glow {
  box-shadow: 0 0 60px -15px #0b83da;
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal.active {
  display: flex;
}
@media (max-width: 640px) {
  .modal-content {
      width: 100%;
      margin: 0;
      max-height: 90vh;
      overflow-y: auto;
  }
}