       #wrapper-paper {
            display: inline-block;
            max-width: 400px;
            margin: 20px;
            position: relative;
        }

        #back-paper,
        #front-paper {
            box-sizing: border-box;
            border: 5px solid white;
            background-color: rgb(240, 240, 240);
            box-shadow: 0 0 5px 5px grey;
        }

        #back-paper {
            width: 100%;
            height: 100%;
            transform: rotate(5deg);
            position: absolute;
            top: 0;
            left: 0;
            z-index: -1;
        }

        #front-paper {
            display: inline-block;
            padding: 5px;
        }

        #wrapper-paper img {
            width: 60px;
            height: auto;
            position: absolute;
            top: -13px;
            right: 20px;
        }