body{
	background-image: url("fundo.png");
}
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
main {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 20px;
}
.card {
	background-color: pink;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); 
	margin: 20px;
	padding: 20px;
	text-align: center;
	max-width: 300px;
}
.card img {
	max-width: 150px;
	height: 150px;
    margin-left: 30px;
}
.card h2 {
	margin-top: 10px;
	font-size: 24px;
}
.card p {
	margin-top: 10px;
	font-size: 18px;
	color: #993300;
	font-weight: bold;
}

.addToCart {
    display: block;
    margin: 10px auto;
    padding: 10px 20px;
    font-size: 18px;
    color: rgb(255, 255, 255);
    background-color: #000000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}
.carrinho {
    position: absolute;
    top: 5%;
    right: 0;
    transform: translate(-50%, -50%);
    height: 75px;
    width: 75px;
}

.row {
	justify-content: space-between;
}

.col {
	text-align: center;
}

p {
	font-size: 16px;
	margin-bottom: 5px;
}
  

    