Back to battles

#188

Icecream Sticks

<div></div>
<div></div>
<style>
  body {
    background: #fffd9b;
    display: grid;
    place-content: center;
    place-items: center;
  }
  div {
    width: 20px;
    height: 240px;
    background: #646521;
    position: absolute;
    border-radius: 10px;
    box-shadow:
      -80px 0 #969610,
      80px 0 #969610;
  }

  div:nth-of-type(1)::after {
    content: '';
    width: 100%;
    height: 100%;
    background: #646521;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    border-radius: 10px;
    z-index: 1;
  }
  div:nth-of-type(2) {
    rotate: 90deg;
    height: 340px;
  }
</style>

30

4/8