@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;800&display=swap');

/* Apply a default font family */
body {
    font-family: 'Inter', sans-serif;
}

/* Custom glow effect for purple buttons and elements on hover */
.purple-glow:hover {
    box-shadow: 0 0 15px 5px rgba(168, 85, 247, 0.4);
    transform: scale(1.05);
}