body {

    background-color: beige;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}


img {
    display: block;
    margin: auto;
      
}

.wrapper {
    width: 1000px;
    background-color: beige;
    margin-left: auto;
    margin-right: auto;
    
}

.header {
	max-width: 1000px;
	background-color:#42643d;

}

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;
}

.market {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
    background-color: white;
}

.item {
    text-align: center;
    padding-top: 10px;
}

.item img {
    width: 100%;
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.item p {
    margin-top: 8px;
    font-size: 14px;
}


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