<body>
<div class="box">
<div class="eye">
<div class="eye-inner"></div>
</div>
</div>
<div class="box flip"></div>
</body>
<style>
body {
background: #328FC1;
display: flex;
position: relative;
justify-content: center;
align-items: center;
height: 100%;
}
.box {
margin-bottom: 1rem;
width: 9.07rem;
height: 4.55rem;
background: #FADE8B;
border-radius: 0 2rem 0 0;
transform: rotate(-30deg);
display: flex;
justify-content: end;
align-items: end;
position: relative;
z-index: 5;
}
.flip {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -61%) rotate(210deg) scaleX(-1);
z-index: 3;
}
.eye {
background: #222222;
height: 1.25rem;
width: 1.25rem;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
margin: 0 0.6rem 0.8rem 0;
}
.eye-inner {
background: #FADE8B;
height: 50%;
width: 50%;
border-radius: 50%;
}
</style>