        /* Global Styles*/
        @import url("https://use.typekit.net/qsp0bya.css");

        html {
            background-color: lightgray;
            font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        }

        body {
            background: white;
            max-width: 1366px;
            margin: auto;
            height: auto;
        }

        /* Header Styles*/

        header {
            background-image: url(../images/starlight-header.jpg);
            background-size: cover;
            display: flex;
            align-items: end;
            justify-content: space-between;
            height: 151px;
            padding-bottom: 24px;
            padding-left: 51px;
        }

        #branding {
            padding-bottom: 0px;
            margin-bottom: 0px;
        }

        header div {
            font-size: 48px;
            font-family: "futura-pt", sans-serif;
            font-weight: 700;
            font-style: normal;
            color: white;
        }

        header span {
            font-size: 22px;
            font-weight: 600;
            margin-left: 19px;
            padding-left: 19px;
            border-left: solid 3pt white;
        }

        nav {
            margin-bottom: 6px;
        }

        nav a {
            text-decoration: none;
            font-size: 18px;
            font-family: "futura-pt", sans-serif;
            font-weight: 700;
            padding: 2px 11px 2px 11px;
            margin-left: 3px;
            background-color: #4E846A;
            color: black;
            mix-blend-mode: lighten;
            transition-property: color;
            transition-timing-function: ease-in-out;
            transition: 300ms;
        }

        nav a:nth-child(1) {
            padding-left: 18px;
            border-radius: 20px 0 0 20px;
            color: black;
            mix-blend-mode: lighten;
        }

        nav a:hover {
            background-color: #7CCEA1;
        }

        /* Footer Styles*/
        footer {
            color: #315444;
            font-size: 10pt;
            font-family: "franklin-gothic-atf", sans-serif;
            font-weight: 400;
            font-style: normal;
            display: flex;
            justify-content: center;
            border-top: solid 4pt #315444;
            margin-left: 55px;
            margin-right: 55px;

        }

        footer p {
            margin-top: 8px;
            margin-right: 27px;
        }

        section {
            margin: 30px 55px;
        }