right now I have something like the following as seen below. I want the square to be transparent, meaning there is an "overlay" effect for the background, but a transparent square so I can view the items below it.
May I ask if this is possible to implement?
.overlay{
display: flex;
align-items: center;
justify-content: center;
height: 250px;
width: 250px;
border: solid red 1px;
background-color: rgba(0, 0, 0, 0.3);
}
.square{
height: 100px;
width: 100px;
border: solid lime 1px;
background-color: transparent !important;
}
<div class="overlay">
<div class="square"></div>
</div>