/* Import Fonts (used across site) */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Prevent horizontal scroll */
html,
body {
  overflow-x: hidden;
}

/* Base Body Styling */
body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;  
}