body {
  width: 540px;
  margin: auto;
  font-family: 'Handlee', cursive;  
  background: #333;
  color: #666;
}

article {
  margin: 50px auto;
  padding: 20px 40px;
  position: relative;
  box-shadow: 0 0 10px rgba(0, 0, 0, .15);
  background: #fcf59b;
  background: -webkit-linear-gradient(top, #81cbbc, #fcf59b 2%);
  -webkit-background-size: 100% 40px;
}

article, 
article:before,
article:after {
  -webkit-border-bottom-left-radius: 20px 500px;
  -webkit-border-bottom-right-radius: 500px 30px;
  -webkit-border-top-right-radius: 5px 100px;
}

article:after,
article:before {
  content: ' ';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  box-shadow: 0 0 10px rgba(0, 0, 0, .15);
}

article:before {
  -webkit-transform: rotate(4deg);
  background: #fcf6a7;
}

article:after {
  -webkit-transform: rotate(-4deg);
  background: #fcf7b1;
}

p {
  line-height: 2.5em;
}

h1 {
  padding-top: 8px;
  margin-bottom: -8px;
}

article:focus {
  outline: none;
  color: black;
  border-radius:0;
}

article:focus:after,
article:focus:before {
  content:none;
}
.link {
  background:  #fcf59b;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0px 0px 2px 3px rgba(0, 0, 0, .35);
}
.link a {
  letter-spacing: 1px;
  font-size: 1.2em;
  font-weight: bold;
  color: #121212;
}