Back to battles

#49

Stay at Home

<div></div>
<div></div>
<style>
  body {
    background: #6592cf;
    display: grid;
    place-items: center;
    place-content: center;
  }
  div {
    background: #243d83;
  }

  div:nth-of-type(1) {
    border: 100px solid #6592cf;
    border-bottom-color: #243d83;
    margin-top: -100px;
  }

  div:nth-of-type(1)::after {
    content: '';
    width: 100px;
    height: 10px;
    background: #eeb850;
    position: absolute;
    top: 145px;
    left: 150px;
    border-radius: 10px;
  }

  div:nth-of-type(2)::after {
    content: '';
    width: 50px;
    height: 50px;
    background: #eeb850;
    position: absolute;
    top: 200px;
    left: 175px;
    border-radius: 10px 10px 0 0;
  }

  div:nth-of-type(2) {
    height: 100px;
    width: 150px;
    border-radius: 0px 0 10px 10px;
  }
</style>

10

6/6