* {
    padding: 0;
    margin: 0;
}

header {
	background-color:rgba(35,28,0,8);
	height: 80px;
	width:100%;
	position:fxed;
}

h1 {
	color: white;
	position: absolute;
	left: 30px;
	top: 0;
	line-height: 80px;
	background-image: url(images/reecho_logo.png);
	background-repeat:no-repeat;
	background-position: center;
	width: 210px;
	text-indent: -9999px;
}


header ul {
	position:absolute;
	right:3vw;
	top: 0;
	line-height: 80px;
}
	
header a {
	color: white;
	text-decoration: none;
}

header a:hover {
	text-decoration: underline;
}

header li {
	display: inline;
	margin-right: 2vw;
}

.news {
	background-color: antiquewhite;
	color: #777171;
	height: 700px;
	padding: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: top;
}

.news img {
	padding: 20px;
	margin-top: 60px;
}



.news h2 {
	padding: 30px;
	font-size: 40px;
	margin-top: 60px;
}

.news p {
	padding: 40px;
	color: #9993293;
	font-size: 28px;
	margin: 25px 0;
}


.product {
	display: flex;
	background-color: #485652;
	justify-content: space-between;
	align-items: top;
	padding: 100px 180px 80px;
}

.product div {
	width: 300px;
	text-align: center;
}



.product h3 {
	font-size: 20px;
	margin: 20px 0;
	color: white;
}

.product p {
	color: white;
	font-size: 16px;
	line-height: 1.6em;
}


input::placeholder {
	color: #DDDDDD;
}

input:focus {
	outline: none;
	border-color: #E0E9A3;
}




footer {
	background-color: #485652;
	padding: 10px;
	height: 120px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
}

footer img {
	padding: 20px;
}


.menu {
	display: none;
}

/* mobile view*/
@media screen and (max-width:768px) {
	header ul {
		display: none;
	}

	header h1 {
		left: 50%;
		transform: translateX(-50%);
	}

	.news {
		height: 900px;
	}
	


	.news h2 {
		font-size: 40px;
	}

	.menu {
		display: block;
		background-color: transparent;
		color: white;
		font-size: 35px;
		position: absolute;
		top: 15px;
		left: 20px;
		border: none;
		cursor: pointer;
	}

	.shop {
		flex-direction: column;
	}
	.shop img {
		width: 100%;
	}
	.info {
		width: 100%;
		padding: 40px 0;
	}

	.info h2 {
		font-size: 30px;
	}
	.product {
		flex-direction: column;
		padding: 60px 0;
		align-items: center;
	}
	.product div {
		margin-bottom: 30px;
		
	}
}