* { 
  "reset.css": "/* CSS Reset */\n\n/* Remove default margin and padding */\n* {\n  margin: 0;\n  padding: 0;\n  box-sizing: border-box;\n}\n\n/* Set default font size and family */\nbody {\n  font-size: 100%;\n  font-family: sans-serif;\n}\n\n/* Remove list styles */\nul, ol {\n  list-style: none;\n}\n\n/* Remove default link styles */\na {\n  text-decoration: none;\n  color: inherit;\n}\n\n/* Set images to be responsive */\nimg {\n  max-width: 100%;\n  height: auto;\n}\n\n/* Set default table styles */\ntable {\n  border-collapse: collapse;\n  width: 100%;\n}\n\n/* Set default heading styles */\nh1, h2, h3, h4, h5, h6 {\n  margin: 0;\n}\n\n/* Set default button styles */\nbutton {\n  border: none;\n  background: none;\n  cursor: pointer;\n}\n" 
}