/* Global properties ======================================================== */
/* Create page background and default text color */
body {
    background-image: url("mainbackground.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    font-family:Tahoma, Arial, Helvetica;
    font-size:12px;
    color: white;
    font-weight:bold;
}
p {
    background: grey;
  }

a {
  color: #0087cc;
}
a:hover {
  color: #ff7b29;
}

/* Change H1 attributes */

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;
}

/* Change the size of the text and color for the byline */

.byline {
  color: white;
  font-family: Georgia, Times, "Times New Roman", serif;
  font-style: italic;
  font-size:20px;
  margin-bottom: 18px;
}

/* Create a box for the Div Selector */

div {
  border: 6px solid #949599;
  height: 100px;
  margin: 20px;
  padding: 20px;
  width: 400px;
}


table, th, td {
      border:3px solid black;
      border-collapse: collapse;
      background:#4682B4 ;
      font-size: 14px;
      color: black;
      font-weight: bold;
     }

