body {
  margin: 20px auto;
  font-family: 'Mooli';
  background:#fdf0df;
  color:black;
}
*{
  margin:0;
  padding:0;
}
h1{
  text-align: center;
  margin-bottom: 3em;
}
h2 {
  font-weight: bold;
  font-size: 25px;
}
p {
  font-family: 'Reenie Beanie';
  font-size: 25px;
}
ul,li{
  list-style:none;
  margin:1em;
}
ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
ul li a{
  text-decoration:none;
  color:#000;
  background:#ffd161;
  display:block;
  height:10em;
  width:10em;
  padding:1em;
  box-shadow: 5px 5px 7px rgba(33,33,33,.7);
  transition: transform .15s linear;
}
ul li:nth-child(even) a{
  transform:rotate(4deg);
  position:relative;
  top:5px;
  background:#01e4a0;
}
ul li:nth-child(3n) a{
  transform:rotate(-3deg);
  position:relative;
  top:-5px;
  background:#79c8f6;
}
ul li:nth-child(5n) a{
  transform:rotate(5deg);
  position:relative;
  top:-10px;
  background:#ff6c66;
}
ul li a:hover,ul li a:focus{
  box-shadow:10px 10px 7px rgba(0,0,0,.7);
  transform: scale(1.25);
  position:relative;
  z-index:5;
}