@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');

/* Apply Montserrat font to specific elements */
body {
    font-family: 'Montserrat', sans-serif;
}

:root {
  --primary: #ff622d;
  --light: white;
  --hero-heading: white;
  --hero-subheading: #d1cbe8;
}
/* General Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  /* font-family: Arial, sans-serif; */
  margin: 0;
  padding: 0;
  /* background-color: #1e0533; */
  max-width: 100vw !important;
  overflow-x: hidden;
}
.container {
  max-width: 1200px;
  margin: auto;
}



