/* General Reset */
@font-face {
  font-family: 'Share Tech';
  src: url('./fonts/ShareTech-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Krisha';
  src: url('./fonts/Krisha-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sansation';
  src: url('./fonts/SansationRegular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

body {
    background-color: white;
    font-family: 'Share Tech', sans-serif;
    padding: 0;
    overflow-x: hidden;
    position: relative;
    color: #1B1F22;
}

main {
  position: relative; /* Keep content positioned properly */
  z-index: 1;
}
  




