/* CSS Document */
/* Author: Peter Davies
/* Copyright Davies Wise Design Company */
/* https://www.dwdc.co.uk */

@font-face {
    font-family: 'latolight';
    src: url('./fonts/Lato-Lig-webfont.eot');
    src: url('./fonts/Lato-Lig-webfont.eot?#iefix') format('embedded-opentype'),
         url('./fonts/Lato-Lig-webfont.woff') format('woff'),
         url('./fonts/Lato-Lig-webfont.ttf') format('truetype'),
         url('./fonts/Lato-Lig-webfont.svg#latolight') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'latoregular';
    src: url('./fonts/Lato-Reg-webfont.eot');
    src: url('./fonts/Lato-Reg-webfont.eot?#iefix') format('embedded-opentype'),
         url('./fonts/Lato-Reg-webfont.woff') format('woff'),
         url('./fonts/Lato-Reg-webfont.ttf') format('truetype'),
         url('./fonts/Lato-Reg-webfont.svg#latoregular') format('svg');
    font-weight: normal;
    font-style: normal;
}


* { 
	margin: 0; 
	padding: 0; 
}

html { 
	overflow-y: scroll;
}

body { 
	background:#000000; 
}
	
img { 
	display: block; 
	margin: auto;
}


/* Structure and text */

#container {
	width: 96%;	
	max-width: 960px;
	margin: auto;
	padding: 2%;
} 

#header {
	width: 100%;	
	max-width: 960px;
	margin: auto;
	padding: 0;
} 

h1 {
	font-family: 'latolight', Arial, Helvetica, sans-serif;
	font-size: 54px;
	font-weight: normal;
    	font-style: normal;
	text-align: center;
	margin-bottom: 30px;
	color: #ffffff;
}



/* Main image */			

#header-image {
	margin: 40px 0 30px 0;
	width: 100%;
}



/* Button */

#button-wrap {
	width: 100%;
	margin: 60px 0 30px 0;
	text-align: center;
}

.btn {
  	-webkit-border-radius: 7;
  	-moz-border-radius: 7;
  	border-radius: 7px;
  	font-family: 'latoregular', Arial, Helvetica, sans-serif;
  	color: #ffffff;
  	font-size: 24px;
  	background: #1abc9c;
  	padding: 10px 20px 10px 20px;
  	text-decoration: none;
}

.btn:hover {
  	background: #12ab8d;
  	text-decoration: none;
}



/* Media Queries */
@media screen and (max-width: 480px) {

h1 {
	font-size: 36px;
}

}

