@charset 'UTF-8';

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local('Open Sans Light'), local('OpenSans-Light'), url(/fonts/g1.woff) format('woff');
}

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local('Open Sans Semibold'), local('OpenSans-Semibold'), url(/fonts/g2.woff) format('woff');
}

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local('Open Sans Bold'), local('OpenSans-Bold'), url(/fonts/g3.woff) format('woff');
}

/*Basic*/

* {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

html, body {
	width: 100%;
	height: 100%;
	margin: 0;
}

body, input, textarea {
	font-family: 'Open Sans', sans-serif;
	line-height: 1.85em;
	color: #666;
	font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
	color: #3e3e3e;
}

h2, h3, h4, h5, h6 {
	font-weight: 300;
}

h1 {
	font-size: 3.6em;
	font-weight: 300;
	line-height: 1.6em;
	text-align: center;
	padding: 100px 0 25px 0;
	margin: 0;
}

h2 {
	text-align: center;
}

.centre {
	text-align: center;
}

.bold {
	font-weight: 700;
}

.error {
	color: #f00;
}

.button {
	color: #fff;
	background-color: #0d6efd;
	cursor: pointer;
	outline: 0;
	padding: 6px 12px;
	border: 1px solid transparent;
	border-radius: .25rem;
	border-color: #0d6efd;
	display: inline-block;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	text-align: center;
	text-decoration: none;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
		0 3px 1px -2px rgba(0, 0, 0, 0.12),
		0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.button:hover {
	color: #fff;
	background-color: #0b5ed7;
	border-color: #0a58ca;
}

.colourInput:valid {
	background-color: palegreen;
}

.colourInput:invalid {
	background-color: lightpink;
}
