I'm trying to stack + vertically & horizontally align the three blue circle divs. End result should look something like this:
I've tried adding margin: 0 auto;, text-align: center;
Thank you
.outer {
padding: 5px;
}
.circle1 {
width: 84px;
height: 84px;
border-radius: 42px;
background-color: #1393ff;
position: absolute;
}
.circle2 {
width: 96px;
height: 96px;
border-radius: 48px;
background-color: #1393ff;
position: absolute;
opacity: 0.5;
}
.circle3 {
width: 110px;
height: 110px;
border-radius: 55px;
background-color: #1393ff;
position: absolute;
opacity: 0.2;
}
<div class="outer">
<div class="circle1"></div>
<div class="circle2"></div>
<div class="circle3"></div>
</div>