body{
font-family: Arial;
margin:0;
background:#f6fff6;
}

header{
background:#2e8b57;
color:white;
padding:15px;
text-align:center;
}

nav a{
color:white;
margin:10px;
text-decoration:none;
font-weight:bold;
}

.banner{
text-align:center;
padding:40px;
background:#dff5df;
}

.products{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
padding:30px;
}

.product{
background:white;
padding:20px;
border-radius:10px;
text-align:center;
box-shadow:0 0 5px gray;
}

.product img{
width:200px;
}

button{
background:#2e8b57;
color:white;
border:none;
padding:10px 15px;
cursor:pointer;
}

button:hover{
background:#256d45;
}

.cart{
text-align:center;
padding:40px;
}

.checkout,
.contact{
width:300px;
margin:auto;
display:flex;
flex-direction:column;
gap:10px;
}