Can someone help me make the inner part of the red circle white, overlapping with the blue circle and transparent for the rest to reveal the green color underneath?
If anyone has a solution, I would greatly appreciate it.
#bigCircle {
display: flex;
justify-content: center;
align-items: center;
width: 380px;
height: 380px;
border-radius: 50%;
background-color: rgba(11, 122, 30, 0.8);
}
#middleCircle {
display: flex;
justify-content: center;
align-items: center;
width: 240px;
height: 240px;
border-radius: 50%;
background-color: rgba(0,0,250,0.5);
}
.smallCircle {
margin-top: -244px;
margin-left: 1px;
border: solid rgb(226, 85, 20);
width: 13px;
height: 13px;
border-radius: 50%;
background-color:rgba(255,255,255,0);
}
<div id="bigCircle">
<div id="middleCircle">
<div class="smallCircle" />
</div>
</div >