/*element name selector, body*/
body {
    margin: 0;
    padding: 20px;
    font-family: Arial, sans-serif;
    color: rgb(185, 32, 32);

    background-image: linear-gradient(to bottom, #f1f38b, #057208);
    /*I like gradient color background ^_^, so add one! */

}

/*ID selector, title, h1*/
#main-title {
    color: #602cc8;
}

/*Class name selector, h2*/
.section-header {
    color: #fd068e;
}

/*Class name selector, h3*/
.section-header-2 {
    color: #1e00ff;
}
