.header {
    background-color: dimgray;
    overflow: hidden;
    padding: 5px 5px;
    font-family: "Microsoft Sans Serif", sans-serif;
}

/* Style the header links */
.header a {
    float: left;
    color: white;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    font-size: 18px;
    line-height: 25px;
    border-radius: 4px;
}

/* Style the logo link (notice that we set the same value of line-height and font-size to prevent the header to increase when the font gets bigger */
.header a.logo {
    font-size: 25px;
    font-weight: bold;
}

/* Style the hover link */
.header a:hover {
    background-color: darkseagreen;
    color: dimgray;
}

/* Float the link section to the right */
.header-right {
    float: right;
}

/* Add media queries for responsiveness - when the screen is 500px wide or less, stack the links on top of each other */
@media screen and (max-width: 500px) {
    .header a {
        float: none;
        display: block;
        text-align: left;
    }
    .header-right {
        float: none;
    }
    .footer a {
        float: none;
        display: block;
        text-align: left;
    }
    .footer-right {
        float: none;
    }
}

/* header commonalities */
h2 {
    font-family: "Gill Sans Ultra Bold", sans-serif;
}

/* paragraph commonalities */
body {
    font-family: "Gill Sans Ultra Bold", sans-serif;
}

.footer {
    background-color: dimgray;
    overflow: hidden;
    padding: 30px;
    font-family: "Microsoft Sans Serif", sans-serif;
    color: lightgray;
}


/* Style the links */
.footer a {
    text-decoration: none;
    color: ghostwhite;
}

/* Style the logo links */
.footer a.logo {
    font-size: 25px;
    font-weight: bold;
    color: ghostwhite;
    margin: 10px;i
}

.footer a:hover {
    background-color: darkseagreen;
    color: dimgray;
}

/* Create right footer section for developer names */
.footer-right {
    float: right;
    font-size: 18px;
    font-weight: normal;
    margin-left: 5%;
    margin-right: 5%;
    margin-top: 5px;

}

/* content body specific restrictions */
.content {
    margin-left: 5%;
    margin-right: 5%;
    margin-top: 5px;
}



