28/10/2023

<div class="battle-wrapper">
  <div class="box"></div>
</div>
<style>
  .battle-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    max-width: 400px;
    height: 300px;
    background: #b8b7cc;
  }
  .box {
    width: 250px;
    height: 150px;
    background: #1e1e5a;
    position: relative;
  }

  .box:before,
  .box:after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    background: linear-gradient(to bottom, #1e1e5a 50%, #b8b7cc 50% 100%);
    left: 50%;
    transform: translateX(-50%);
  }
  .box:before {
    top: -50px;
  }
  .box:after {
    bottom: -50px;
    transform: translateX(-50%) rotate(180deg);
  }
</style>