I need help adding a circle with a number next to a div containing centered text. Take a look at the image I have attached for reference.
https://i.sstatic.net/tHA65.png
I believe I am close to achieving the desired outcome, but I am struggling to center the text within the div. If you have any tips or a better method to accomplish this task, please share your insights.
Below is the code I have been working on:
#container2 {
margin-top: 25px;
}
.fs1 {
display: table-cell;
vertical-align: middle;
}
.cl {
color: #b6ebe8;
font-size: 31px;
font-weight: 700
}
#a3 {
border-radius: 50%;
background-color: #1cbbb4;
padding: 0 18px;
text-align: center;
color: white;
margin-right: 25px;
}
<div id='container2' style="text-align:center;background: #00a99d;border-radius: 55px;">
<div class='fs1' id='a3' style="-webkit-box-shadow: 42px 2px 21px -3px rgba(0,0,0,0.69);-moz-box-shadow: 42px 2px 21px -3px rgba(0,0,0,0.69);box-shadow: 10px 4px 16px 4px rgba(0,0,0,0.69);">
<div class='fs1 cl'>1</div>
</div>
<div class='fs1 text-center py-2' style="color:white;font-size:23px;max-width:756px;line-height: 32px;"> Η ισχυρή ιατρική σύσταση αποτελεί τον κυριότερο άξονα προαγωγής του εμβολιασμού και εξάλειψης των χαμένων ευκαιριών. <sup>45</sup></div>
</div>