body {/* Code starts here */
    font-family: Times Georgia, 'Times New Roman', Times, serif, sans-serif;
    background-color: #658060;
    color: #ced6de;
}

.nav-bar {
    display: flex;/* Will allow me to control space and distribution of items  */
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #658060;
}
.nav-bar .logo {/*Colour and stuff for logo*/
    font-size: 20px;
    font-weight: bold;
    color: #2b7846;
}
.nav-bar ul {
    list-style: none;
    display: flex;
}
.nav-bar a {
    text-decoration: none;
    color: #fafafa;
    padding: 0 10px;
}

.intro-section {
    text-align: center;
    padding: 50px;
    background: #658060;
}
.intro-section h1 {
    font-size: 40px;
    color: #2b7846;
}
.intro-section input {
    padding: 10px;
    border: 1px solid #fafafa;
    border-radius: 5px;
}
.intro-section button {
    padding: 10px 15px;
    background: #2b7846;
    color: #fafafa;
    border: none;
}

.intro-section a {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background: #238636;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

section {
    padding: 20px;
    text-align: center;
}
#services-section {
    background: #2b7846;
}
#services-section h3 {
    color: #d4d4d4;
}
#contact-section {
    padding: 30px;
    background: #2b7846;
}
footer {
    text-align: center;
    padding: 10px;
    background: #2b7846;
    color: #8b949e;
}