/* element selector */
body {
    font-family: Arial;
    background-color: #f0f0f0;
}

/* id selector */
#main-title {
    color: blue;
    text-align: center;
}

/* class selector */
.section {
    color: green;
    margin-top: 20px;
}
