/* Importing free font from google */
@import url('https://fonts.googleapis.com/css?family=Niconne');
@import url('https://fonts.googleapis.com/css?family=Oswald:500');
@import url('https://fonts.googleapis.com/css?family=Courgette|Oswald:500');


#background {
    /* Background o fthe page positioning */
    position: relative;
    /* Fixing margins and padding */
    padding: 0;
    margin: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Background information */
    background-image: url(../Images/services.gif);
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

body {
    /* Main body styling */
    position: absolute;
    height: 100%;
}

#overlay {
    /* Adding the blue overlay */
    background: rgba(39, 62, 84, 0.89);
    overflow: scroll;
    height: 100%;
    z-index: 2;
}

/* ----------------- Section 1 ---------------*/

/* This section includes the heading, along with the 
   paragraphs placed over the gifs */

#section1 {
    /* All of the heading and paragraphs */
    width: 57%;
    margin: 0 auto;
    text-align: center;
    color: white;
    margin-top: 3.5em;
    padding-bottom: 5em;
}

#heading {
    /* The contact title of the page */
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    letter-spacing: 0px;
}

.ptop {
    /* First paragraph spacing from top */
    margin-top: 1.7em;
    font-size: 21px;
    font-weight: 550;
    font-family: 'Oswald', sans-serif;
    font-family: 'Courgette', cursive;

}

.pspacing {
    /* Spacing between each paragraphs following */
    margin-top: 1.7em;
    font-size: 21px;
    font-weight: 550;
    font-family: 'Oswald', sans-serif;
    font-family: 'Courgette', cursive;
}

/* Media queires */
/* Make content cover 85% of the browser-width when browser-size is less than 450px */
@media only screen and (max-width: 450px) {
    #section1 {
        width: 85%;
    }
}