*{
    margin:0;
    padding:0;
  }
  
  #Postit_h2 {
    font-weight: bold;
    font-size: 2rem;
  }
  #Postit_p {
    font-family: 'Reenie Beanie';
    font-size: 1.3rem;
  }
  .PostitUl,.PostitLi{
    list-style:none;
  }
  .PostitUl{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .PostitUl .PostitLi a{
    text-decoration:none;
    color:#000;
    background:#ffc;
    display:block;
    height:19em;
    width:19em;
    padding:1em;
    box-shadow: 5px 5px 7px rgba(33,33,33,.7);
    transform: rotate(-6deg);
    transition: transform .15s linear;
  }
  
  .PostitUl .PostitLi:nth-child(even) a{
    transform:rotate(4deg);
    position:relative;
    top:5px;
    background:#cfc;
  }
  .PostitUl .PostitLi:nth-child(3n) a{
    transform:rotate(-3deg);
    position:relative;
    top:-5px;
    background:#ccf;
  }
  .PostitUl .PostitLi:nth-child(5n) a{
    transform:rotate(5deg);
    position:relative;
    top:-10px;
  }
  
  .PostitUl .PostitLi a:hover,.PostitUl .PostitLi a:focus{
    box-shadow:10px 10px 7px rgba(0,0,0,.7);
    transform: scale(1.25);
    position:relative;
    z-index:5;
  }
  
  .PostitUl .PostitLi{
    margin:1em;
  }