*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Fredoka One', cursive;
}
body{
  background: #482edb;
}
.center{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page{
  background: white;
  width: 400px;
  height: 680px;
  padding: 30px;
  border-left: 30px solid rgb(255, 0, 43);
  transform: rotate(-45deg) skew(10deg) scale(.8);
  box-shadow: -50px 50px 50px rgba(0,0,0,0.5);
}
.page h1{
  color: black;
  font: 25px;
  text-align: center;
  padding: 0;
  margin: 0 0 20px 0;
}
.page h1:hover{
  color: rgb(5, 148, 124);
}
.page p{
  margin: 0;
  padding: 0;
  text-align: justify;
}
.page::before{
  content: "";
  width: 30px;
  height: 100%;
  background: #8a0e0e;
  position: absolute;
  top: 0;
  left: 0;
  transform: skewY(-45deg) translate(-57px, -43px);
}
.page::after{
  content: "";
  width: 106%;
  height: 30px;
  background: #ccc;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: skewX(-45deg) translate(-11px,30px);
}