16/10/2023

<div class="battle-wrapper">
  <div class="container">
    <div class="blue"></div>
    <div class="purple"></div>
  </div>
</div>
<style>
  .battle-wrapper {
    background: #b5d1fb;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    max-width: 400px;
    height: 300px;
    overflow: hidden;
  }
  .container {
    position: relative;
  }
  .blue {
    box-sizing: border-box;
    width: 250px;
    height: 150px;
    border: 30px solid #230259;
  }
  .purple {
    position: absolute;
    background: #8819f6;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    height: 30px;
    width: 130px;
  }
  .purple:after {
    content: "";
    position: absolute;
    background: #8819f6;
    width: 30px;
    height: 135px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 30px solid #b5d1fb;
    border-top: none;
  }
</style>