• SCSS (Sassy CSS) is a preprocessor scripting language that extends CSS with features like variables, nesting, and mixins.
  • It makes stylesheets more maintainable and efficient to write.
  • A useful feature of SCSS compared to plain CSS is its ability to manage nested classes
    •   .navbar {
        	background: black;
        	.menu {
        		list-style: none;
        		
        		li {
        			display: inline-block;
        		}
        	}
        }