Using CSS, how can I arrange a list of items in a circular-ish look like this automatically based on the number of items in it. I want to evenly distribute the items and make it as proportional as possible. Is there an easy way to do it? Currently I am using the following settings to put stack them together and the remaining ones will be at the end in the center but I want to achieve this circular ish look if possible.
display: flex;
flex-wrap: wrap;
justify-content: center;