/*-----------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;
}
/*-----------3 Column Layout (src: https://www.w3schools.com/css/css_website_layout.asp)-----------*/
 * {
     box-sizing: border-box;
}
 .block1{
     padding: 15px;
}
 .column {
     float: left;
     width: 33.33%;
     text-align: center;
}
 .row:after {
     content: "";
     display: table;
     clear: both;
}
 @media screen and (max-width: 600px) {
     .column {
         width: 100%;
    }
}
/*-----------Hover text on image (src: https://www.w3schools.com/howto/howto_css_image_overlay.asp)-----------*/
 .container {
     position: relative;
     width: 100%;
}
 .image {
     opacity: 1;
     width: 80%;
     height: auto;
     transition: .5s ease;
     backface-visibility: hidden;
     margin-bottom: 50px;
     border-radius: 15px;
}
 .middle {
     transition: .5s ease;
     opacity: 0;
     position: absolute;
     top: 35%;
     left: 50%;
     transform: translate(-50%, -50%);
     -ms-transform: translate(-50%, -50%);
}
 .container:hover .image {
     opacity: 0.3;
}
 .container:hover .middle {
     opacity: 1;
}
 .text {
     color: black;
     font-size: 18px;
     padding: 16px 32px;
     font-family: 'Source Sans Pro', sans-serif;
}
/*-----------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; */
