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

.content {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
    color: white;
    display: flex;
    min-height: auto;
}

.carrosel {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px;
    max-width: 400px;
    background-color: white;
}

.carrosel img {
    max-width: 400px;
    height: auto;
    flex-shrink: 0;
    border-radius: 10px;
}

.aside {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    background-color: #dddddd;
    color: black;
    padding-top: 100px;
    align-items: center;
}

.aside h2 {
    font-size: 2rem;
    margin: 0;
    color: black;
    padding-right: 45px;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    color: black;
    padding-left: 20px;
    align-self: flex-start;

}

.aside button {
    padding: 22px 20px;
    border: none;
    background-color: black;
    color: white;
    cursor: pointer;
    font-size: 1rem;
    width: 400px;
}

.description h3 {
    margin-bottom: 10px;
    padding-left: 20px;

}

.description p {
    line-height: 1.6;
    padding-left: 20px;

}

@media (max-width: 768px) {
}

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