/*-----------Body formatting styles-----------*/
 html, body{
     height: 100%;
}
 h1 {
     color: #d01800;
     margin-left: 40px;
     font-family: 'Raleway', sans-serif;
     font-weight: bold;
}
 h2 {
     color: #d96600;
     margin-left: 40px;
     font-family: 'Source Sans Pro', sans-serif;
}
 p {
     margin-left: 40px;
     font-family: 'Source Sans Pro', sans-serif;
     font-size: 20px;
}

body {
  background-color: #FBFFFE;
}


/*-----------Site layout blocks-----------*/
 * {
     box-sizing: border-box;
}
 .block1{
     padding: 15px;
}
 .block2 {
     width: 50%;
     float: left;
     padding: 15px;
}
 .block3 {
     width: 50%;
     float: left;
     padding: 15px;
}
/*-----------Office Hours Table-----------*/
 ul {
     list-style-type: none;
     font-family: 'Source Sans Pro', sans-serif;
}
 table, td {
     border-collapse: collapse;
     margin-left: 36px;
}
 th, td {
     padding: 5px;
     text-align: left;
     font-family: 'Source Sans Pro', sans-serif;
     font-size: 20px;
}

/*-----------OTHER SOURCES (Google map: https://www.w3schools.com/graphics/google_maps_basic.asp)-----------*/

/*-----------Header and navigation bar - Alesha (src: https://www.w3schools.com/howto/howto_css_searchbar.asp;
 https://www.geeksforgeeks.org/html-course-building-header-of-the-website/)-----------*/
 .topnav {
     overflow: hidden;
     background-color: #E6Af2E;
     margin-top: 17px;
}
 .topnav a {
     float: left;
     display: block;
     color: black;
     text-align: center;
     padding: 18px 25px;
     text-decoration: none;
     font-size: 20px;
     font-family: 'Raleway', sans-serif;
}
 .topnav a:hover {
     background-color: #ddd;
     color: black;
}
 .topnav .active {
     color: black;
}
 .topnav .search-container {
     float: right;
     margin-top: 4px;
}
 .topnav input[type=text] {
     padding: 6px;
     margin-top: 8px;
     font-size: 17px;
     border: none;
}
 .topnav .search-container button {
     float: right;
     padding: 6px;
     margin-top: 8px;
     margin-right: 16px;
     background: #ddd;
     font-size: 17px;
     border: none;
     cursor: pointer;
}
 .topnav .search-container button:hover {
     background: #ccc;
}
 @media screen and (max-width: 600px) {
     .topnav a, .topnav input[type=text] {
         float: none;
         display: block;
         text-align: left;
         width: 100%;
         margin: 0;
         padding: 14px;
    }
     .topnav input[type=text] {
         border: 1px solid #ccc;
    }
}
 header{
     overflow: hidden;
}
 #top-header{
     text-align: center;
     height: 150px;
}
 #logo{
     float: left;
     height: 60px;
     margin-left: 40px;
}
 #logo img{
     width: 25%;
     float: left;
     padding: 10px 0px;
}
/*-----------Footer - Omar-----------*/
 footer {
     bottom: 0px;
     background: #E6AF2E;
     color: #001514;
     padding: 15px;
}
 nav a {
     color: #001514;
     text-decoration: none;
     display: inline-block;
     font-size: 12px;
     font-family: 'raleway', sans-serif;
     padding: 2px;
}
 .footlinkalignment {
     margin: 0 auto;
     text-align: center;
}
 .footcopyright {
     text-align:center;
     font-size: 12px;
     font-family:'Raleway', sans-serif;
}
 #facebookicon {
     float: right;
}
 #twittericon {
     float: right;
}
 #linkedinicon {
     float: right;
}
 #copyrighticon {
     float: left;
}

/*
Black (text)
#001514

White (background)
#FBFFFE

Red (h1 - main headings)
#D01800

Orange (h2 - sub headings)
#D96600

Yellow (boxes/borders etc.)
#E6AF2E

-the links in the navigation bar and "h1"
    font-family: 'Raleway', sans-serif;
-"h2" and the main text body "p"
    font-family: 'Source Sans Pro', sans-serif; */
