*, *:before, *:after { box-sizing: border-box; } body { margin: 0; height: 100vh; background-color: darkgrey; } .productCard{ padding: 10px; margin: 20px; width: 200px; background-color: azure; border-radius: 10px; } .productName{ text-align: center; background-color: rgb(231, 30, 8); padding: 5px; color: white; border-radius: 5px; margin-top: 0px; } .productPrice{ text-align: center; padding: 8px; background-color: green; color: white; border-radius: 5px; } .showcase{ display: flex; align-items: center; justify-content: center; } .productQuantity{ padding: 10px 0px 50px; text-align: center; } .orderSection{ display: flex; justify-content: center; } .orderSection * { margin: 10px }