423 caracteres em 14/08/2024.
<div class="elemento-1"></div>
<div class="elemento-1 elemento-2"></div>
<style>
body {
display: flex;
align-items: center;
justify-content: center;
gap: 50px;
background: #AA445F;
}
div {
width: 230px;
height: 229px;
}
.elemento-1 {
background: #F7EC7D;
clip-path: circle(50% at 100%);
}
.elemento-2 {
background: #E38F66;
clip-path: circle(50% at 0);
}
</style>