13/08/2023

<div class="battle-wrapper">
  <div class="pill"></div>
</div>
<style>
  .battle-wrapper {
    margin: 0;
    max-width: 400px;
    height: 300px;
    background: #998235;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .pill {
    width: 260px;
    height: 130px;
    background: linear-gradient(to right, #0b2429 50%, #998235 50%);
    border-radius: 100px;
    outline: 15px solid #0b2429;
    outline-offset: -15px;
  }
</style>