<!DOCTYPE html>
<html>
<head>
<title>Titre du document</title>
<style>
body {
background: linear-gradient(#0042ad, #fff);
padding: 20px;
}
.letter {
background: #ffffff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
margin: 26px auto 0;
max-width: 550px;
min-height: 300px;
padding: 24px;
position: relative;
width: 80%;
}
.letter:before,
.letter:after {
content: "";
height: 98%;
position: absolute;
width: 100%;
z-index: -1;
}
.letter:before {
background: #fafafa;
box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
-webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
-moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
left: -5px;
top: 4px;
transform: rotate(-2.7deg);
-webkit-transform: rotate(-2.7deg);