Back to battles

#6

Missing Slice

<div id="top-left"></div>
<div id="top-right"></div>
<div id="bottom-left"></div>

<style>
  body {
    background: #e3516e;
    display: grid;
    grid-template-columns: auto auto;
    place-content: center;
  }

  div {
    height: 100px;
    width: 100px;
  }

  #top-left {
    background: #51b5a9;
    border-top-left-radius: 100%;
  }

  #top-right {
    background: #fade8b;
    border-top-right-radius: 100%;
  }

  #bottom-left {
    background: #f7f3d7;
    border-bottom-left-radius: 100%;
  }
</style>

01

12/12