Currently, I am diving deeper into the world of scss and finding myself a bit perplexed by certain aspects. I'm hoping for some guidance from knowledgeable individuals.
One issue I am facing involves defining different font sizes for various headings. For example, I have already set the font-family as follows:
h1, h2, h3 {
font-family: 'Quicksand', sans-serif;
}
How can I further customize this to assign different sizes to h1, h2, and h3? Would I need to create separate declarations for each heading, or is there a more efficient way to approach this?