/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@600&family=Poppins&display=swap');

body {
  font-family: 'Poppins', sans-serif;
}

h1, .hero-heading {
  font-family: 'Oswald', sans-serif;
}

.

button, a {
  transition: all 0.3s ease;
}

.overlay {
  background: rgba(0, 0, 0, 0.5);
}
.zoom iframe {
  transform: scale(2.5); /* Default for mobile */
  transform-origin: center center;
}

@media (min-width: 1024px) {
  .zoom iframe {
    transform: scale(1.2); /* For large screens and up */
  }
}


