/*Exercise 1*/
p.gray{
    background-color: gray;
    font-weight: bold;
}

p.red{
    background-color: red;
    font-style: italic;
}

p.purple{
    background-color: purple;
    color: white;
}

.important{
    font-size: 250%;
}

/*Exercise 2*/
p#fuchsia{
    background-color: fuchsia;
}

p#uppercase{
    text-transform: uppercase;
}

#bigwords{
    font-size: 200%;
    color: green;
}