body {
    margin: 0;
    padding: 0;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
}

#content {
    padding: 0 2em;
}

h1,h2,h3 {
    font-family: "Zilla Slab", serif;
    font-weight: 600;
    font-style: normal;
}

h1 {
    font-weight: 700;
    margin-block-end: 0;
}
h2 {
    font-weight: 500;
}

header h2 {
    margin-block-start: 0;
}
#navbar {
    width: 100%;
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: space-between;
}

#logo {
    margin: 1em 2em;
}
nav {
    display: block;
    justify-self: flex-end;
    margin: 2em;
}
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
nav li {
    display: inline;
    margin: 0 1em;
}

li a {
    text-decoration: none;
}

#services {
    display: flex;
}

#services section {
    display: block;
    margin: 0 0.5em;
    padding: 0 .5em;
    width: 300px;
    height: 220px;
    border-radius: 5px;
    box-shadow: 1px 1px 5px 0px #9a9a9a;
}
#services section h3 {
    width: 100%;
    text-align: center;
}
#contactus { 
    display: block;
}

footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    color: white;
    background-color: midnightblue;
    vertical-align: bottom;
    position: absolute;
    height: 170px;
    width: 100%;
}

footer section {
    padding: .5em;
}

#sitemap {
    text-align: left;
}

#sitemap li {
    list-style: none;
}
#sitemap a {
    color: white;
}
#address {
    vertical-align: top;
    text-align: right;
}