@charset "utf-8";

html, body {
	margin: 0px;
	padding: 0px;
}
body {
	overflow-x: hidden;
	background-color: rgba(177,212,141,1.00);
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
    margin: 0;
    padding: 0;
}

header {
    width: 75vw;
    height: 20%;
    background-color: rgba(255, 255, 255, 1.00);
    text-align: center;
    margin: 0 auto;
    display: flex;
    align-items: center;
	flex-direction: column;
    justify-content: center;
}

nav {
	height: 100px;
    background-color: rgba(231,247,214,1.00);
	text-align: center;
	margin: 0px;
	width: 100%;
}
	nav ul {
    	list-style-type: none;
    	display: flex;
    	justify-content: space-around;
    	align-items: center;
    	height: 100%;
	}

	nav ul li {
		margin: 10px;
	}

	nav ul li ul {
		flex-direction: column;
	}

	nav ul li a {
		height: 45px;
    	display: flex;
    	color: rgba(104,67,35,1.00);
    	font-size: 1.5rem;
    	font-weight: bold;
    	text-decoration: none;
		margin: 10px 0px 0px 0px;
	}

			nav ul li a:hover {
				color: rgba(15,50,8,1.00);
	}

main {
    text-align: center;
}

main ul {
    padding: 0;
    margin: 0;
    display: inline-block;
}

main ul li {
    margin: 10px 0;
    font-size: 1.8rem;
	color: rgba(104,67,35,1.00);
}

h1 {
	color: rgba(15,50,8,1.00);
	font-size: 4rem;
	letter-spacing: 0.5rem;
}

h2{
	font-size: 4rem;
	text-align: center;
	background-color: rgba(255,255,255,0.50);
	color: rgba(15,50,8,1.00);
}

footer{
	height: 100px;
}

.left-image {
    max-width: 100%;
	width: 350px;
    height: auto;
    position: absolute;
    top: 75%;
    transform: translateY(-50%);
    z-index: 1;
    left: 10%;
}

.container{
    font-size: 1.2rem;
	text-align: left;
	width: 400px;
	display: inline-block;
}