Which property increases the spacing around the div element in this code?
marginbackground-colorcolorMake sure to pick margin.
<html>
<head>
<style> div {margin: 25px; padding: 10px; background-color: bisque; color: chocolate;} </style>
</head>
<body>
<h2> Final scores </h2>
<div>
<p> Team 1: 21 </p>
<p> Team 2: 16 </p>
</div>
</body>
</html>]]>