/*Formatting for the largest header*/
h1 {
  font-family: 'roboto','times new roman';
  font-size: 72px;
  color:firebrick;
  border-bottom: 5px solid navy;
  padding-bottom: 6px;
  text-align: justify;
  
}

body {
margin: 0;
  
}
/*Formatting for the 2nd largest header*/
h2 {
  font-family: 'roboto','times new roman';
  font-size: 36px;
  color:firebrick;
  background: navy;
  text-align: justify;
}

/*Formatting for the paragraphs*/
p {
  font-family: 'roboto','times new roman';
  font-size: 23px;
  color: firebrick;
  background: navy;
  text-align: justify;
}

/*Formatting for the Horizontal Rule*/
hr {
  height: 3px;
  background-color: firebrick;
  padding: 3px;
  text-align: justify;
}

/*Formatting for the links*/
a {
  font-family: 'roboto', 'times new roman';
  font-size: 20px;
  padding: 10px;
  margin: 2px;
  text-align: justify;
}

a:link    { color: blue;  }
a:visited { color: red;   }
a:hover   { color: #ecf024; }
a:active  { color: #09e12d;  }
