/* This is a CSS comment */
/* Styling for the body element */
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
color: #333333;
}
/* Styling for heading elements */
h1, h2, h3 {
color: #0066cc;
}
/* Styling for links */
a {
color: #0066cc;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Styling for a class */
.my-class {
background-color: #ff0000;
padding: 10px;
border: 1px solid #cccccc;
}
/* Styling for an ID */
#my-id {
font-weight: bold;
color: #ff9900;
}
/* Media query for responsive design */
@media screen and (max-width: 768px) {
/* CSS rules for screens smaller than 768px */
body {
font-size: 14px;
}
h1 {
font-size: 24px;
}
/* ... more rules ... */
}