With box-sizing: border-box, width: 200px, padding: 20px, border: 5px, and margin: 10px, how much total horizontal space does the element occupy in the layout?
.card {
box-sizing: border-box;
width: 200px;
padding: 20px;
border: 5px solid;
margin: 10px;
}