body{
	background-color:#fff;
	color:#555;
	font-family:Arial, Helvetica, sans-serif;
	font-size:16px;
	line-height:1.5em;
	margin:0;
	height:100%;
}

.outter-container{
	min-height:100vh;
}


.container{
	width:80%;
	margin:auto;
	overflow:hidden;
	height:auto;
}

#main-header{
	background-color:#CB4335;
	color:#FBFCFC;
}

#main-header a{
	color:#FBFCFC;
	text-decoration:none;
}

#navbar{
	background-color:#F4D03F;
	color:#fff;
}

#navbar ul{
	padding:0;
	list-style:none;
}

#navbar li{
	display:inline;
}

#navbar a{
	color:#fff;
	text-decoration:none;
	font-size:18px;
	padding-right:15px;
}

#showcase{
	background-image:url(".../images/example.jpg");
	background-position: center-right;
	height:300px;
	margin-bottom: 30px
	text-align:center;
}

#showcase h1{
	color:#27AE60;
	font-size:50px;
	line-height: 1.6em;
	padding-top:30px;
}

#main{
	float:center;
	width:90%;
	padding:20px
	padding-bottom:50px;
	margin-bottom:50px;
	height:100%;
	position:relative;
}

.container .intro{
	width:80%;
}

.container .fields{
	width:70%;
	padding:20px
	padding-bottom:50px;
	margin-bottom:50px;
	margin-top:50px;
	height:100%;
	float:left;
}

.container .fields label{
	display:inline-block;
	float:left;
	text-align:right;
	clear:left;
	width:30%;
	padding:20px
}


.container .fields input{
	display:inline-block;
	float:left;
	font-size:14px; 
	width:40%;
	padding:20px
}

.container .fields textarea{
	display:inline-block;
	float:left;
	font-size:14px; 
	width:40%;
	padding:20px
}

#sidebar{
	float:right;
	width:30%;
	background:#333;
	color:#fff;
	padding:0 30px;
	box-sizing: border-box;
}

/*.container .fields .button{
	padding:20px;
	margin-top: 50px;
	margin-bottom:50px;
	margin-left:100px;
	margin-right:100px;
	background:#333;
	color:#fff;
	border:none;
	text-align:center;
	float:center;
}*/

.container .fields .button{
	background:#333;
	color:#fff;
	border:none;
	margin-top: 50px;
}

.container .button:hover{
	background-color:#CB4335;
	color:white;
}

#main-footer{
	background:#333;
	color:#fff;
	height:45px;
	margin-bottom:0px;
	width:100%;
	position:absolute;
	text-align:center;
	display:inline;
	padding-top:10px;
}

#main-footer #company{
	margin-left: 10%;
	display:inline;
	float:left;
}

#main-footer #company a{
	text-decoration: none;
	color:white;
}

#main-footer #twitter_link{
	float:right;
	margin-right:10%;
	display:inline;
}

#main-footer #twitter_link img{
	height:30px;
	width:30px;
}

/*makes items dynamic so that if window if less than 600px will go on top
of each other. Does this by taking out float on sides, makes them full with*/

/* 
@media(max-width:600px){
	#main{
		width:100%;
		float:none;
	}
	#sidebar{
		width:100%;
		float:none;
	}
}
*/