*/

/*Class Landing Page Colour Palette
-------------------------------------------------
Body Background (bg) colour: #fefcfb - egg-shell white
Header / Footer bg colour: #231942 - deep purple
Text colour Header / Footer: #fefcfb - off-white
Hyperlinks in Header / Footer - #76b9af - mint green
Hyperlinks in Main: #034078 - navy blue
--------------------------------------------------*/
#wrapper   {
    margin-top: 0px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0px;
    max-width: 1024px;
}
body {
    margin: 0px;
    background-color: #fefcfb;
    font-size: 1.2em;
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
}
header, footer {
    padding: 60px 50px;
    background-color: #112a2d;
    color: #fefcfb;
    text-align: center;
}
h1, h2 {
    font-family: "Cooper Black", Elephant, "Footlight MT Light";
}
a {
    color: #034078;
}
header a, footer a {
    color: #76b9af;
}
ul {
    list-style-type: none;
}
main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
footer a {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    padding-left: 0.5em;
    padding-right: 0.5em;
    display: inline-block;
    text-decoration: none;
    border-width: 0.05em;
}
