/*-----------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;
}

/*-----------Header and navigation bar (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-----------*/
footer {
    bottom: 0px;
    width: 100%;
    height: 100%;
    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;
}

.zoom {
    transition: transform .2s;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.zoom:hover {
    transform: scale(3); /* (This does work however where the thumbnail is situated it goes outside of viewport) */
}


/*
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; */
