.wrapper {
    width:1000px;
    margin:0 auto;
    background-color: #42643d;
}

body { 
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: beige

}

.header { 
    height:200px;
    margin-bottom:15px;
    background-color:#42643d;
    width: 1000px;
    text-align: center
}

nav {
    width: 1000px;
    background-color: #42643d;
    
    
}

nav li {
	padding: 10px;
	text-align: left;
    color: white;
    font-family: "Open Sans", sans-serif;
    font-size: large;
    font-weight: 500;
    
}

nav ul {
	list-style: none;
	margin: 0;
	padding-bottom: 5px;
	display: flex;
	justify-content: space-around;
   
}

a {
    color: white;
    text-decoration: none;
}

.content {
    width:640px;
    height:620px;
    background-color:white;
    float: left;
    text-align: center;
    padding-top: 10px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 10px;

}

h1 {
    color: white;
    background-color: #42643d;
    padding: 5px;
}

h2 {
    color: white;
    background-color: #42643d;
    padding: 5px;
}

.aside {
    width:280px;
    height: 620px;
    background-color:#dddddd;
    float: right;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 20px;
}


footer {
    clear: both;
    text-align: center;
    background-color: #42643d;
    padding-bottom: 20px;
    padding-top: 10px;
    color: white;
    height: 50px
   
   
}