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

/* Company colors
	Red - #D20000
	Yellow - #A8D200
	Green - #00D254
	Blue - #0054D2
	Purple - #A800D2
	Gray - #B1B1B1

Colors for website design
	#C2C2C2 - medium black
`	#B1B1B1 - gray
	#D5D5D5 - light gray

*/

* {
	font-family: times new Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
	
}

body {
	background-color: #FFF;
	
}

h1 {
	text-align: center;
	font-size: 32px;
	
}

h2 {
	text-align: center;
	margin-left: 40px;
	font-size: 28px;
	
}

h3 {
	text-align: left;
	margin-left: 40px;
	font-size: 24px;
	
}

p {
	margin-left: 60px;
	
}

nav {
	width: 100%; 
	text-align: center;
	position: absolute;
	overflow: hidden;
	margin-top: 85px;
	
}

nav ul {
	list-style-type: none;
	display: block;
	padding-top: 20px;
	padding-bottom: 20px;
	
}

nav li {
	display: inline-block;
	font-size: 18px;
	padding: 0 40px;
	text-align: center;

}

nav a:link {
	text-decoration: underline;
	color: #2C2C2C;
	
}

nav a:hover {
	background-color: #2C2C2C;
	color: #B1B1B1;
	padding: 12px;
	transform: scale(1.2);
	transition: linear 0.3s;
	border-radius: 12px;
	
}

nav a:active {
	text-decoration: underline;
	color: #2C2C2C;
	
}

.center {
	margin-left: 315px;
	clear: both;
	
}

.clear {
	clear: both;
	
}

.right {
	float: right;
	width: 40%;
	
}

.right h1, .right h2 {
	padding-right: 100px;
	
}

.left {
	float: left;
	width: 40%;
	
}

.feature {
	font-size: 20px;
	padding: 20px;
	
}

.colors {
	margin-left: 60px;
	
}

.text {
	font-size: 6px;
	padding-left: 40px;
	
}

a {
	color: #2C2C2C;
	text-decoration: underline;
	
}

.button {
	text-decoration: underline;
	color: #2C2C2C;
	margin-left: 60px;
	
}

.button:hover {
	background-color: #2C2C2C;
	color: #B1B1B1;
	padding: 12px;
	transform: scale(1.2);
	transition: linear 0.3s;
	border-radius: 12px;
	
}

.logo {
	align: center;
	padding: 0 100px;
	display: inline-block;
	
}

img {
	margin-top: 20px;
	margin-bottom: 20px;
	
}

li {
	margin-left: 60px;
	line-height: 1.2;
	
}

footer {
	margin-right: auto;
	margin-left: auto;
	clear: both;
	
}