/* Applies to the entire body of the HTML document (except where overridden by more specific
selectors). */
body {
  /*margin: 25px;*/
  /*background-color: rgb(240,,240); */
  background-color: lightblue;
   text-align: left;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
}

/* Applies to all <h1>...</h1> elements. */
h1 {
  font-size: 25px;
  font-weight: normal;
  margin-top: 5px;
  color: rgb(255,255,255);
  font-family: Arial, Helvetica, sans-serif;
 text-align: left;

}

/* Applies to all <h1>...</h1> elements. */
h2 {
  font-size: 10px;
  font-weight: normal;
  margin-top: 5px;
  color: rgb(0,0,0);
  font-family: Arial, Helvetica, sans-serif;
 text-align: left;

}

h3 {
  font-size: 10px;
  font-weight: normal;
  margin-top: 5px;
  color: rgb(0,0,0);
  font-family: Arial, Helvetica, sans-serif;
 text-align: right;

}


/* Applies to all elements with <... class="someclass"> specified. */
.someclass { color: red; }

/* Applies to the element with <... id="someid"> specified. */
#someid { color: green; }
