@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* Apply font to all text */
body {
  font-family: 'Montserrat', sans-serif;
}

/* If you want to use it in Tailwind classes */
@tailwind base;
@layer base {
  h1, h2, h3, p {
    font-family: 'Montserrat', sans-serif;
  }
}

.bg-gradient-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.9));
}

.yellow-glow {
    position: absolute;
    background: radial-gradient(circle, rgba(196, 176, 64, 0.2) 0%, rgba(255,215,0,0) 70%);
    border-radius: 50%;
}

        .text-shadow {
          text-shadow: 1px 1px 3px rgba(0, 0, 0, 20);
        }