* { "contents": "/* CSS Reset */\n\n/* Box sizing rules */\n* {\n  box-sizing: border-box;\n  margin: 0;\n  padding: 0;\n}\n\n/* Remove default padding and margin */\nbody, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {\n  margin: 0;\n  padding: 0;\n}\n\n/* Set core body defaults */\nbody {\n  line-height: 1.5;\n  font-family: Arial, sans-serif;\n}\n\n/* Remove list styles on ul, ol elements with a class */\nul[class], ol[class] {\n  list-style: none;\n}\n\n/* A elements that don't have a class get default styles */\na {\n  text-decoration: none;\n  color: inherit;\n}\n\n/* Make images responsive */\nimg {\n  max-width: 100%;\n  height: auto;\n}\n\n/* Remove default table styling */\ntable {\n  border-collapse: collapse;\n  border-spacing: 0;\n}\n" }