/* تعریف فونت‌های Pelak */
@font-face {
  font-family: 'Pelak';
  src: url('./fonts/Pelak-Regular.ttf') format('truetype');
  font-weight: 400; /* Regular */
  font-style: normal;
}

@font-face {
  font-family: 'Pelak';
  src: url('./fonts/Pelak-Medium.ttf') format('truetype');
  font-weight: 500; /* Medium */
  font-style: normal;
}

@font-face {
  font-family: 'Pelak';
  src: url('./fonts/Pelak-Black.ttf') format('truetype');
  font-weight: 900; /* Black */
  font-style: normal;
}

/* اعمال فونت به کل صفحه */
body {
  font-family: 'Pelak', sans-serif !important;
  margin: 0;
  padding: 0;
}