How do i recreate this half circle design at the footer of my web page as shown in the image below
I have only tried recreating the half circle, but im not able to push it down the bottom of the page with footer details like the image above. heres my own version
Heres my html and css code
body{
padding: 0;
margin: 0;
}
.container {
background-color: #11012B;
height: 100vh;
width: 100vw;
display: flex;
align-items: center;
justify-content: center;
}
.semicircle {
background: rgba(255, 255, 255, 0.1);
box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
height: 125px;
width: 250px;
border-radius: 125px 125px 0 0;
}
<div class="container">
<div class="semicircle"></div>
</div>