/*------------------------------------*\
  CSS Reset
\*------------------------------------*/

* {
  margin: 0;
  padding: 0;
  font-style: inherit;
  cursor: default;
  outline: 0;
  -webkit-font-smoothing: antialiased;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box; }

  
/*------------------------------------*\
  Document default
\*------------------------------------*/

body, html {
  width: 100%;
  height: 100%;
  font: 400 16px/26px 'Source Sans Pro', sans-serif;;
  color: #fff; /* Font Color Color Here */
  background: #72b986; 
}

body {
	background-color: rgb(114, 185, 134); /* Change Background Color Here */
}


img.svg-logo {
	 width: 225px;
}


/*------------------------------------*\
  Site box
\*------------------------------------*/

#contain #content {
  width: 100%;
  padding: 20px;
}

#contain #content * {
  text-align: center; }

  
/*------------------------------------*\
  Centralised box
\*------------------------------------*/

#wrap {
  width: 100%;
  height: 100%;
  display: table;
  position: relative;
  z-index: 5; }

#wrap #contain {
  text-align: center;
  vertical-align: middle;
  display: table-cell; }

#wrap #contain #content {
  display: inline-block; }


/*------------------------------------*\
  Logo
\*------------------------------------*/

#logo {
	padding-top: 24px;
}


