/* 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');

#map {
    /* Creating the map as the bacground image of this page */
    position: absolute;
    /* Making and positioning it so it covers the full screen */
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    /* Need z-index to be 0 as it will be the background.
       Needs to be below the overlway */
    z-index: 0;
}

#overlay {
    /* Blue overlay over the gif */
    position: absolute;
    /* Overlay colour */
    background: rgba(39, 62, 84, 0.89);
    overflow: scroll;
    /* Need this z index so it can be above the map */
    z-index: 99;
    /* Also making and positioning it so it covers the full screen */
    width: 100%;
    height: 100%;
}

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

/* This section includes the heading, along with the 
   contact placed over the map */

#section1 {
    /* Creating a width for entire section.
       Keep it consistent with other pages */
    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;
    /* Adding curisve font family */
    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;
    /* Adding curisve font family */
    font-family: 'Oswald', sans-serif;
    font-family: 'Courgette', cursive;
}

/* Removes all the buttons on the google map.
   Don't need to display any of those buttons.
   This css code was found through slack, can
   not find the link again. */
.gmnoprint {
    display: none;
}

/* 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%;
    }
}