p{
 background-color: bisque;
 color: green;
 font-size: 200%;
/* This is a comment, the next line will make the font size bigger*/
}
h1{
    color: crimson;
    background-color: darkgrey;
}
p.small {
 font-size: small;
 color:red;
}
p.medium {
 font-size: medium;
}
p.large {
 font-size: large;
}
p.xlarge {
 font-size: x-large;
}
#firstname {
  background-color: yellow;
}
#secondname {
  background-color: pink;
}