/* Global properties ======================================================== */



/* Create a page background and default text color */

body {
      background:#02283e;
      font-family:Tahoma, Arial, Helvetica;
      font-size:12px;
      color: white;
      font-weight:bold;
     }

/* set background color for elements or divisons */

p {
   background: grey;
  }


a { 
   color:#0087cc;
  }

a:hover
  {
   color:#ff7b29;
  }

/* Change H addributes */

h1 {
    font-size: 38px;
    font-weight: bold;
    color: yellow;
    margin-bottom: 6px;
   }

h2 {
     font-size: 22px;
     font-weight: bold;
     margin-bottom: 6px;
     font-style: italic;
   }

.byline {
       color:white;
       font-family: Georgia, Times, "Times New Roman", serif;
       font-style: italic;
       margin-bottom: 18px;
       font-size:20px;
         }

/* Create a box for the Div selector */

div  {
       border: 6px solid #949599;
       height: 100px;
       margin: 20px;
       padding: 20px;
       width: 400px;
}






