/* Poppins Regular */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('./font/Poppins/Poppins-Regular.ttf') format('truetype');
  }
  
  /* Poppins Regular Italic */
  @font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 400;
    src: url('./font/Poppins/Poppins-Italic.ttf') format('truetype');
  }
  
  /* Poppins Medium */
  @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    src: url('./font/Poppins/Poppins-Medium.ttf') format('truetype');
  }
  
  /* Poppins Medium Italic */
  @font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 500;
    src: url('./font/Poppins/Poppins-MediumItalic.ttf') format('truetype');
  }
  
  /* Poppins SemiBold */
  @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: url('./font/Poppins/Poppins-SemiBold.ttf') format('truetype');
  }
  
  /* Poppins SemiBold Italic */
  @font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 600;
    src: url('./font/Poppins/Poppins-SemiBoldItalic.ttf') format('truetype');
  }
  
  /* Poppins Bold */
  @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: url('./font/Poppins/Poppins-Bold.ttf') format('truetype');
  }
  
  /* Poppins Bold Italic */
  @font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 700;
    src: url('./font/Poppins/Poppins-BoldItalic.ttf') format('truetype');
  }
  

  body {
    font-family: 'Poppins', sans-serif;
  }