Is there a way to create an oval shape instead of a rectangle with rounded edges using CSS?
Below is the code snippet I have been working with:
div {
position: fixed;
border-radius: 25px;
background: rgba(0,0,0,.5)
width: 100px;
height: 50px;
top: calc(50% - 25px);
right: calc(50% - 50px);
}