@charset "utf-8";
/* CSS Document */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;	
}
body {
	font: normal 16px "source-sans-pro", sans-serif;
	 background-image: url(../images/appHorseBackground.png);
    background-repeat: no-repeat;
    background-size: cover;
    }
ul {
	list-style: none;
}
a {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}


/* header */

header {
	margin-bottom: 10px;
} 

header img {
	width: 160px;
	float: left;
	padding-top: 5px;
	padding-left: 30px;
	padding-bottom: 5px;
	box-sizing: border-box;
	margin-right: 40px;
    
}

.mainNav {
    width: 1000px;
    margin: 0 auto;
}
nav ul {
    margin: 0;
    padding: 0;
    position: relative;
}
nav ul li {
    float: left;
    background-color: rgba(200,200,200,1);
    text-align: center;
    font-size: .9em;
    display: block;
    margin-right: 20px;
}
nav a {
 transition-property: all;
	transition-duration: .7s;   
    
    
}
nav ul li a {
    padding: 30px 10px;
    color: rgba(140,140,140,1);
    display: block;
    
}

nav ul ul {
    position: absolute;
    width: 200px;
    margin-top: 0px;
    margin-left: -20px;
    z-index: 10;
    display: none;
}
nav ul ul li {
    display: block;
    width: 200px;
    text-align: left;
    
}
nav ul li:hover>ul {
    display: block;
}
nav a:hover {
    background-color: rgba(240,240,240,1);
    color: #000;
}

.headContainer {
	background: rgba(200,200,200,1);
}
/* end of header */
/* main */

h1 {
    font-size: 3em;
    font-weight: 400;
    padding: 50px 0px 20px;
	margin-bottom: 20px;
	width: 500px;    
}
.promoDiscrip {
    width: 500px;
    line-height: 1.5em;
    margin: 0px 150px;
}
#paragraphButton {
	text-align: center;
	margin-top: 40px;
	}
#button {
	font-family: "permanent marker";
	font-size: 1.2em;
	display: inline-block;
	padding: 20px 20px;
	color: #fff;
	font-weight: 100;
	background-color: #2f32a2;
	border-radius: 10px;
	
		
}
#button:hover {
	background-color: #9e57e7;
	/*letter-spacing: .2em; */
	transition: .5s background-color;
	color: rgb(220,220,220);
}
.heroContainer {
	width: 1250px;
	margin: 50px auto;
	height: 500px;
}
#heroPens{
	float: right;
	margin-right: 50px
}
/* end of main*/

/* footer */
.footer {
	width: 1370px;
	margin: 0 auto;
	text-align: center;
	padding: 20px;
}
h3 {
	margin-bottom: 5px;
}
footer {
	height: auto;
	background-color: rgba(50,50,50,.1);
	margin-top: 10px;
	bottom: 0;
	width: 100%;
    min-height: 300px;
}
footer p {
	font-size: 80%;
	line-height: 160%;
	color: rgba(100,100,100,1);
}
/* end footer */

/* group definition */

.group:before,
.group:after {
	content: "";
	display: table;
}
.group:after {
	clear: both;
}
.group {
	zoom: 1;
}
/* end group definition */

