I'm trying to get this text to center in this div. I'm using react so the class name is "className"
.cartCost {
  background-color: #fffbe3;
  width: 300px;
  height: 40px;
  font-size: 24px;
  font-weight: bold;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  margin: 8px 0 5px 0;
}
.cartType {
  width: 50%;
  margin: 0 auto;
}<div class="cartCost">
  <div class="cartType">$0.00</div>
</div>The text appears to the left not centered.

 
     
    