/* CSS Syntax and Basic Structure */
/* CSS comments start with '/*' and end with '* /' */
/* This is a comment */
/* CSS rulesets consist of a selector and one or more declarations */
selector {
property: value;
}
/* Example: */
h1 {
color: blue;
font-size: 24px;
}