*{
    margin: 0px;
    padding:0px;
}
body{
    background-color: #fff0f5;
    
}
.container{
   margin: 60px;
   display: flex;
   align-items: center;
   justify-content: space-between;
}
.carrinho{
    background-color: #fff;
    width: 1000px;
    height: 550px;
    padding: 40px;
}
.produto{
    display: flex;
    background-color: #fff;
    justify-content: space-between;
    align-items: center;
}
.produtosnocar{
    width: 150px;
    height: 150px;
    margin: 5px;
    justify-content: space-between;
      transition: transform 0.s ease;
}
.produtosnocar:hover{
    transform: scale(1.1);
}

.numbercar{
    width: 80px;
    height: 30px;
}
.remover{
    background-color: #fff;
    border: none;
    width: 20px;
    height: 20px;
    cursor: pointer;
    transition: transform 0.5s ease;
}
.remover:hover{
    transform: scale(1.2);
}

.numbercar{
    outline: none;
}
.tituloc{
    text-align: center;
    font-family: "Pinyon Script", cursive;
    font-weight: normal;
    font-size: 40px;
}
.total{
    margin: 10px;
    align-items: center;
    width: 230px;
    background-color: #fff;
    height: 350px;
    text-align: center;
    border-radius: 10px;
}
.pedido{
    background-color:rgba(255, 222, 227, 0.925) ;
    border-radius:8px;
    border: none;
    width: 150px;
    height: 30px;
    cursor: pointer;
    margin-top: 40px;
    font-family: "Cormorant", serif;
    font-size: 20px;
    transition: transform 0.6s ease;
}
.total p{
    margin: 15px;
}
.pedido:hover{
    transform: scale(1.1);
}

