
/* FONTS TO BE USED */


/* Montserrat Regular **/
  @font-face {
    font-family: "Montserrat-Regular";
    font-weight: 400;
    font-style: normal;
    src: url("fonts/Montserrat-Regular.woff2") format("woff2"),
      url("fonts/Montserrat-Regular.woff") format("woff");
  }

  @font-face {
    font-family: "Montserrat-Thin";
    font-weight: 100;
    font-style: normal;
    src: url("fonts/Montserrat-Thin.woff") format("woff");
  }

  @font-face {
    font-family: "Lato-Light";
    font-weight: 300;
    font-style: normal;
    src: url("fonts/Lato-Light.woff") format("woff");
  }

@font-face {
    font-family: "Lato-LightItalic";
    font-weight: 100;
    font-style: normal;
    src: url("fonts/Lato-LightItalic.woff");
  }

  @font-face {
    font-family: "Lato-Regular"; /*a name to be used later*/
    src: url("fonts/Lato-Regular.woff"); /*URL to font*/
  }

html {
    background-color: #fff; /* #f9f4f1; */
    border: 0 solid blue; /* use for debugging layout */
    font-family: "Lato-light", sans-serif;
    font-size: 16px;
}

body {
overflow-x: hidden;
margin: 0 auto;
/* max-width: 1024px; */
min-width: 350px
}

main {
  box-shadow: 12px 0 15px -4px rgba(204, 204, 204, 0.6), 
              -12px 0 8px -4px rgba(204, 204, 204, 0.6);
  border-top: 0 solid green;  
  /* use for debugging layout */
  /* max-width: 1024px; */
  margin: 0px auto; /* center it */
}

h1, h2, h3 {
  text-align: center;
  font-family: "Montserrat-Regular";
  font-variant: small-caps;
  line-height: 1.1em;
}


p {
  font-family: 'Lato-Light', sans-serif;
  font-size: 1.2em;
  line-height: 1.5;
}

  .banner img {
    margin: 0 auto;
    width: 100%;
    height: auto;
  }

  /* #services {
    background-color: #efebe3;
  } */