html, body {
    height: 100%;
    margin: 0;
    background-color: #EAEDED;
}

@import url('https://fonts.googleapis.com/css2?family=Freeman&family=Sintony:wght@400;700&display=swap');

.header {
    height: 120px;
    background-color: darkslategray;
    color: white;
    line-height: 120px;
    text-align: center;
    background-size: cover;
}
#boston {
    background-image: url("imgs/skylines/bostonskyline.png");
    /*https://www.storagecafe.com/blog/moving-to-boston-city-guide/*/
}
#worcester {
    background-image: url("imgs/skylines/worcester.png");
    /*https://wbjournal.com/article/the-age-of-the-worcester-skyscraper-has-been-replaced-by-street-level-interactions/*/
}
#springfield {
    background-image: url("imgs/skylines/springfield.png");
    /*https://commons.wikimedia.org/wiki/File:Springfield_MA_Skyline_at_Dusk.jpg*/

}

.imgCredit {
    position: absolute;
    top: -40px;
    right: 50px;
}

#nav {
    background-color: #ABB8B8;
    width: 160px;
    height: calc(100% - 160px);
    float: left;
}

#nav a {
    text-align: center;
    display: block;
    background-color: #ABB8B8;
    padding: 12px;
    color: #000;
    text-decoration: none;
}

#nav a:hover {
    background-color: #587272;
    color: #fff;
}

#main {
    width: 600px;
    padding: 20px;
    float: left;
}

#footer {
    height: 40px;
    background-color: darkslategray;
    color: white;
    text-align: center;
    line-height: 40px;
    clear: both;
}

.caption {
    background-color: darkslategray;
    color: white;
    text-align: right;
    font-family: arial, sans-serif;
    font-size: 9px;
    padding: 5px;
}

.caption a {
    color: white;
}
h1 {
    font-family: "Sintony", sans-serif;
    font-weight: 700;
    font-style: normal;
}
