/* Soothing purple-blue gradient background */
.bg-gradient {
  background: radial-gradient(
      circle at 20% 20%,
      #6c5ce7 0%,
      #3b3b98 40%,
      #222 100%
    )
    no-repeat;
  background-attachment: fixed;
}

/* Card tweaks */
.card {
  border-radius: 1rem;
}

.card h1 {
  letter-spacing: -0.5px;
}