@charset "utf-8";
/* CSS Document */
*{
	margin: 0;
	padding:0;
	box-sizing: border-box;
}
body{
	font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif";
	font-size: 18px;
}
h1{
	text-transform: uppercase;
	font-size: 100px;
	
}
h2{
	font-size: 50px;
	font-style: italic;
}
h3{
	font-size: 40px;
	
}
.container{
	width:1300px;
	background-color: #1A620C;
	padding: 20px;
	margin:auto;
}
/*FLEXBOX ROW 1*/
header{
	display:flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}

/*FLEXBOW ROW 2 */
.img-description{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom:15px;
}
main{
	margin-right: 15px;
}
article{
	border-top-width: 10px solid #1A620C;
		border-top-width: 8px;
	border-bottom-style: solid;
}
/* flexbox row 3*/
footer{
	display:flex;
	justify-content: space-evenly;
	align-items:center;
	background-color:#A3F477;
	padding:10px;
}
.location{
	width: 300px;
	text-align: justify;
	
	
}