/* App.css */
html, body, #root {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden; /* To avoid horizontal scroll */
    box-sizing: border-box;
  }

  html {
    font-size: 16px; /* This sets the base font size */
  }
  
  body {
    font-size: 1em; /* 1em = 16px */
  }
  
  
  .spinner {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

 /* Regular Font */
@font-face {
  font-family: 'Naive Sans';
  src: url('/fonts/naive-sans/medium.woff2') format('opentype');
  font-weight: 500;
  font-style: normal;
}

/* Bold Font */
@font-face {
  font-family: 'Naive Sans';
  src: url('/fonts/naive-sans/bold.woff2') format('opentype');
  font-weight: bold;
  font-style: normal;
}

/* Light Font */
@font-face {
  font-family: 'Naive Sans';
  src: url('/fonts/naive-sans/light.woff2') format('opentype');
  font-weight: 300;
  font-style: normal;
}

/* Extra Black Font */
@font-face {
  font-family: 'Naive Sans';
  src: url('/fonts/naive-sans/extrablack.woff2') format('opentype');
  font-weight: 900;
  font-style: normal;
}

/* Shake Bold Font */
@font-face {
  font-family: 'Naive Sans Shake';
  src: url('/fonts/naive-sans/shake-bold.woff2') format('opentype');
  font-weight: bold;
  font-style: normal;
}

.custom-bold-shake {
  font-family: 'Naive Sans Shake', sans-serif;
  font-weight: bold;
}


  
