/* changing the font color, size, and background color of the navigation UI*/
nav {
    margin-left: 20px ; font-family:sans-serif ; background-color: #BBDEFB;
}

/* This is done to also change the text and background color of the headers */
  h1 {
    color: white ; background-color:#002171 ; padding-top: 10px; padding-bottom: 10px;
    margin-left: 20px;
  }
  h2 {color:#1976D2 ;
    margin-left: 20px ;

  }
/* This is done to make the main paragraph a specific shade and color */

.company {
    font-weight: bold ;
    font-family: sans-serif;
    color: #1976D2 ;
    font-size: large;
}
p {
color: #666666 ; font-family:sans-serif ; margin-left: 20px ; 
}
/* This is also to make sure that everything is colored right and is aligned where it is needed */
ul {
    color: #666666 ; font-family:sans-serif ; margin-left: 20px ;
}
/* from here what I'm doing is aligning the location and information */

dl {
    color: #666666 ; font-family:sans-serif ; margin-left: 20px ;
}

div {
    margin-left: 20px; color: #666666 ; font-family:sans-serif ;
}
/* This center aligns the footer at the bottom of the page */
footer {
    text-align:center; 
}