<div class="container">
  <p>Change the value of the <code>color</code> property to see how it changes the text color of this element.</p>
  <div class="element">
    Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sunt, alias, aliquid fugiat dolorem repudiandae quidem. Molestiae illum pariatur officia voluptate cumque. Necessitatibus earum consequuntur explicabo minus ratione mollitia illum nam.
  </div>
</div>
body {
  background-color: #F5F5F5;
  color: #555;
  font-size: 1.1em;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.container {
  margin: 40px auto 0;
  width: 90%;
}

.element {
  padding: 20px;
  border: 1px solid #aaa;
  background-color: white;
  color: #6388d9;
  color: hsla(200, 50%, 50%, 0.9);
}