Back to battles

#22

Cloud

<div class="right"></div>
<div class="left"></div>
<div class="bottom"></div>
<style>
  body {
    background: #f5d6b4;
    display: grid;
    place-content: center;
  }
  div {
    width: 100px;
    height: 100px;
    background: #d86f45;
    border-radius: 50px;
    position: relative;
  }

  .bottom {
    width: 180px;
    height: 50px;
    bottom: 60px;
    left: 10px;
  }

  .left {
    bottom: 10px;
    right: 10px;
  }

  .right {
    top: 60px;
    left: 70px;
  }
</style>

04

8/8