body {
    font-family: 'Roboto';
}

h1, h2 {
    font-weight: 600;
}

h2, p, li {
    color: rgb(84, 89, 95);
}

.hero-section {
    background: url("./images/wellington-builder.jpg") 50% no-repeat;
    background-size: cover;
    height: 80vh;
    text-align: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
}

.hero-section .hero-section-text {
    color: #fefefe;
    max-width: 800px;
}

@media screen and (max-width:900px) {
    .hero-section .hero-section-text {
        max-width: 90%;
    }
}

.hero-section header {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 2rem;
}

header a {
    color: #fff;
}

.logo {
    float: left;
    margin-left: 2rem;
    max-width: 150px;
}

main {
    margin: 3.5rem 0 5rem;
}

footer {
    padding:2rem 4rem;
    background-color: rgb(51, 63, 72);
    color:#fff;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

footer p {
    color:#fff;
    margin-bottom: .5rem;
}

@media screen and (max-width:640px) {
    footer {
        padding: 2rem 5%;
        flex-direction: column;
    }

    footer div {
        margin-bottom: 1rem;
    }
}