Which border-radius values are used to round the corners of this heading?

<html>
<head>
<style>h3 {text-align: center;border-radius: 70px 20px 50px 30px;width:250px;background-color:lightGreen;}</style> </head><body>
  <h3>%Rounding up for dummies%</h3>
  <h4>A How-To Ebook</h4>
</body>
</html>]]>
All values are usedThe third valueThe first and second valuesThe fourth and first value

All values are used.