@charset "UTF-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}

/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		4;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	12;
	dw-gutter-percentage:	25;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

/* Mobile Layout: 480px and below. */
body { background-image:url("../img/background.jpg"); background-position: center; background-size: cover;
}
.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}
#logo {
	clear: both;
	float: left;
	width: 100%;
	text-align:center;
	margin: 0 0 25%;
	display: block;
}
.button {
    clear: both;
	float: left;
	width: 90%;
	margin: 10% 0 5%;
	padding: 5%;
	text-align: center;
	display: block;
    font-family: 'Be Vietnam Pro', sans-serif;;
	font-size: 16pt;
	font-weight: 600;
    border-radius: 60px;
    letter-spacing: 2pt;
	color: #fff;
    background: #7ab32a;
    transition: 0.5s ease;
}
.button:hover { background: #303474; font-size: 18pt; letter-spacing: 0pt; transition: 0.5s ease;}
#copy {
    clear: both;
	float: left;
	width: 70%;
	text-align:center;
	padding: 5% 15% 10%;
    color: #fff;
}
section {
	clear: both;
	float: left;
    padding: 15%;
	width: 70%;
	display: block;
	text-align:center;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 581px) {

.gridContainer {
	width: 100%;
}
#logo {
	clear: both;
	float: left;
	width: 60%;
	text-align:center;
	margin: 0 20% 20%;
	display: block;
}
section {
    padding: 12% 15% 8%;
    width: 70%;
}
.button { 
	width: 60%;
	margin: 5% 20%;
	padding: 3% 2%;
	font-size: 14pt;
}
#copy {
    clear: both;
	float: left;
	width: 90%;
	text-align:center;
	padding: 2% 5% 5%;
    color: #fff;
}
}

/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 769px) {
.gridContainer {
	width: 100%;
	max-width: 1920px;
	margin: auto;
}
#logo {
	clear: both;
	float: left;
	width: 100%;
	text-align:center;
	margin: 0 auto 8%;
	display: block;
}
#logo img { width: 350px;}
section {
    padding: 7% 10% 6%;
    width: 80%;
}
.button { 
	width: 50%;
	margin: 3% 24% 1%;
	padding: 2% 1%;
	font-size: 16pt;
}
}
