26/10/2023

<div class="battle-wrapper">
  <div class="outer">
    <div class="center"></div>
  </div>
</div>
<style>
  .battle-wrapper {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 400px;
    height: 300px;
    background: #892626;
  }
  .outer {
    width: 100px;
    height: 100px;
    background: #892626;
    position: relative;
    transform: rotate(45deg);
    z-index: 1;
  }
  .outer:before,
  .outer:after {
    content: "";
    background: #c0b932;
    position: absolute;
    z-index: -2;
    height: 200px;
    width: 100%;
    top: -50px;
    left: 0;
  }
  .outer:after {
    transform: rotate(270deg);
  }
  .center {
    width: 100%;
    height: 100%;
    background: #892626;
  }
</style>