Edit in JSFiddle

<h1>
  CSS Multiple Style Selectors</h1>
<p>We can apply multiple styles seperated by semicolumn</p>
 body {
   background-color: silver;
 }

 h1 {
   color: white;
   text-align: center;
 }

 p {
   color: white;
   text-align: center;
   font-size: 16px;
 }