* {
	box-sizing: border-box;
}

body {
  	background-image: linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),url(../Images/woodreapeating.jpg); 
  	color: white;
}
/* ---------------------------------------------------------------------------------------------------------------------Nav Bar--- */
.navbar {
	width: 95%;
	margin: auto;
	padding: 35px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo{
	width: 80px;
}

.navbar ul li{
	list-style: none;
	display: inline-block;
	margin: 0 20px;
	position: relative;
	color: white;
}

.navbar ul li a{
	text-decoration: none;
	color: #fff;
	text-transform: uppercase;
}

.navbar ul li::after{
	content: '';
	height: 3px;
	width: 0%;
	background: #1E90FF;
	position: absolute;
	left: 0;
	bottom: 0;
	transition: 0.5s;
}

.navbar ul li:hover:after{
	width: 100%;
}
/* -----------------------------------------------------------------------------------------------------------------------Header--- */
.header{
	text-align: center;
	width: 1600px;
	margin-left: auto;
	margin-right: auto;
	padding:5px;
	background-color: peru;
}


/* -------------------------------------------------------------------------------------------------------------------------BODY--- */
.content{
	max-width:1200px;
	margin-top:50px;padding: 8px 16px!important;
	transition: margin-left .4s;
	margin-left: auto;
    margin-right: auto;
}

.first{
	padding: 0 8px;
	padding-top: 16px!important;
    padding-bottom: 16px!important;
    text-align: center!important;
}
.first::before{
	content: "";
    display: table;
    clear: both;
}

.first::after{
	content: "";
    display: table;
    clear: both;
}
.third {
	float:left;
	width:33.333%;
	padding:10px;

}
.third p {
	border: 2px solid coral;
	padding: 5px;
}

.third img {
	border: 5px solid khaki;
	padding: 20px;
}
/* -------------------------------------------------------------------------------------------------------------------------FOOTER--- */
.content h2{
	list-style: none;
	display: inline-block;
	margin: 0 20px;
	position: relative;
}

.content h2::after{
	content: '';
	height: 3px;
	width: 0%;
	background: #1E90FF;
	position: absolute;
	left: 0;
	bottom: 0;
	transition: 0.5s;
}

.content h2:hover:after{
	width: 100%;
}
/* -------------------------------------------------------------------------------------------------------------------------FOOTER--- */
.footer {
	width: 100%;
	max-width: 1800px;
	padding: 30px 0;
	display: flex;
	margin: auto;
	align-items: center;
	justify-content: space-between;
}

.footer ul li{
	list-style: none;
	display: inline-block;
	margin: 30px 20px 30px 30px;
	position: relative;

}

.footer ul li a{
	text-decoration: none;
	color: #fff;
	text-transform: uppercase;
}

.footer ul li::after{
	content: '';
	height: 3px;
	width: 0%;
	background: #1E90FF;
	position: absolute;
	left: 0;
	bottom: 0;
	transition: 0.5s;
}

.footer ul li:hover:after{
	width: 100%;
}