/* Sets the font and background color */
body {
	font-family: 'Lato', sans-serif;
	color: white;
	overflow-x: hidden;
	margin: 0;
	background-color: #ED1B2F;
	z-index: 1;
}
/* Navigation Bar */
nav {
	position: absolute;
	width: 100%;
}
nav a, nav a:hover, nav a:active, nav a:visited, nav a:link {
	text-decoration: none;
	color: white;
}
/* Adds line on hover */
nav a:hover {
	border-bottom: 3px solid white
}
/* Adds line to current page */
ul li:nth-child(5) a {
	border-bottom: 3px solid white;
	pointer-events: none;
   	cursor: default;
}
/* Sets font size */
.navigation {
	list-style-type: none;
	font-weight: 500;
	font-size: 18px;
	float: right;
	margin-top: 30px;
}
nav li {
	display: inline-block;
	padding-right: 40px;
}
/* Logo placement */
.logo {
	float: left;
	width: 10%;
	padding-left: 40px;
	margin-top: 22px;
}
/* Top page */
header {
	background-image:url(../images/about_header.png);
	background-repeat: no-repeat;
	width: 100%;
	min-height: 100%;
    height: 100vh;
    background-position: center; 
    background-color: black;
}
/* Top page text */
header h1 {
	font-size: 140px;
	margin: 0;
	text-align: center;
	display: flex;
  	justify-content: center;
  	flex-direction: column;
  	height: 100vh;
}
/* White bar */
.bar {
	height: 26px;
	background: #FFF;
}
/* Center the about text */
.about {
	text-align: center;
}
/* Set font size of about text */
.about h3 {
	font-size: 50px;
	font-weight: 400;
}
.about img {
	width: 100%;
}
hr {
	width: 5%;
	margin-top: -0.23em; 
}
.italic {
	font-style: italic;
	font-weight: 400;
	font-size: 30px;
	width: 1000px;
	margin: 0 auto;
	margin-top: 50px;
	margin-bottom: 20px;
}
/* About text */
article {
	width: 700px;
	margin: 0 auto;
}
article h4 {
	margin: 0 auto;
	float: left;
	font-weight: 600;
	font-size: 30px;
}
article p {
	font-size: 20px;
	font-weight: 300;
	text-align: left;
	margin-bottom: 1.83em;
}
/* About image */
.about img {
	margin-top: 40px;
	margin: 0 auto;
}
/* Story text (middle page) */
.story {
	margin: 0;
	padding: 0;
}
.story h1 {
	text-align: center;
	font-size: 50px;
	font-weight: 400;
}
.text {
	width:100%;
    text-align:center;
}
/* Left, right, and center Story paragraphs */
.left {
	width: 400px;
	float: left;
	text-align: center;
	margin-left: 200px;
}
.center {
	width: 400px;
	display: inline-block;
    margin:0 auto;
    margin-left: -200px;
    margin-right: -200px;
}
.right {
	width: 400px;
	float: right;
	text-align: center;
	margin-right: 200px;
}
/* Products (bottom page) */
.products {
	background-image:url(../images/about_footer.png);
	background-repeat: no-repeat;
	width: 100%;
	overflow: hidden;
	height: 80vh;
	margin-top: 50px;
	background-position: center; 
}
.try {
	display: flex;
  	justify-content: center;
  	align-items: center;
  	height: 80vh;
  	flex-direction: column;
}
.try h1 {
	font-size: 60px;
}
.try button {
	display: block;
}
.try a {
	text-decoration: none;
}
/* Products button */
#button {
	background-color: #ED1B2F;
	border: none;
	padding: 10px 30px;
	color: white;
	font-weight: 400;
	font-size: 16px;
	text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
}
#button:hover {
	background-color: #F43547;
}
/* Footer bar */
footer {
	bottom: 0;
	height: 32px;
	font-size: 12px;
	text-decoration: none;
}
footer p:first-child {
	left: 0;
	margin-top: 15px;
	margin-left: 30px;
}
footer p:nth-child(2) {
	text-align: center;
	margin-top: -28px;
}
footer a {
	color: black;
}
/* Responsive */
@media (max-width: 1650px) { 
	.left {
		width: 300px;
	}
	.center {
		width: 300px;
	}
	.right {
		width: 300px;
	}
}
@media (max-width: 1290px) {
	.left, .center, .right {
		width: 200px;
	}
}
