/* Add custom CSS styles below */ 
img {
  width: 100%;  /* عرض الصورة */
  height: auto; /* المحافظة على نسبة العرض إلى الارتفاع */
}
.ad-banner {
  width: 100%;
  height: 250px;
}
@font-face {
  font-family: 'CustomFont';
  src: url('custom-font.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: "fallback for Poppins";
  src: local("Arial"); /* يمكنك تجربة "Helvetica Neue", "Helvetica", "sans-serif" أيضاً */
  ascent-override: 105%;
  descent-override: 35%;
  line-gap-override: 10%;
}

@font-face {
  font-family: "another fallback for Poppins";
  src: local("Roboto"); /* يمكنك تجربة "sans-serif" أيضاً */
  ascent-override: 105%;
  descent-override: 35%;
  line-gap-override: 10%;
}

body {
  font-family: "Poppins", "fallback for Poppins", "another fallback for Poppins", sans-serif;
}

/* يمكنك أيضاً استهداف عناصر معينة إذا كنت تعرف أنها تستخدم Poppins */
/*
h1, h2, h3, h4, h5, h6, p, span, a, li, button {
    font-family: "Poppins", "fallback for Poppins", "another fallback for Poppins", sans-serif;
}
*/