@DebabrataBanik
Posted
Great work on the design!
You might want to consider adjusting the font-size
for the card elements as the font sizes changes across different viewports. You can try a few methods to scale the text as the screen size increases:
- Media Queries: You can use media queries to define different font-size values for various screen widths.
- Fluid Typography: Try using viewport width units (vw) for fluid scaling, so the text adjusts automatically as the viewport changes.
- CSS clamp() Function: This modern method lets you set a minimum, preferred, and maximum font-size, offering more control over how text scales.
Hope this helps!
Marked as helpful
@Pichikachandu
Posted
Sure @DebabrataBanik thank you