@import url('https://fonts.googleapis.com/css2?family=Zeyada&display=swap');

html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    height: 100vh;
    display: flex;
    align-items:center;
    justify-content:center;
    background-size: 1000px;
    background-image: url("https://i.pinimg.com/736x/de/e8/3d/dee83d27566cd988ecdceed0209ad4d3.jpg");
    background-position: center center;
}

.paper {
    background-image: url("https://i.pinimg.com/236x/a2/7b/f1/a27bf1f90f8d333d3829055b3bf0775e.jpg");
    background-size: 500px;
    background-position: center;
    padding: 20px 100px;
    transform: rotateZ(-5deg);
    box-shadow: 1px 15px 20px 0px rgba(0,0,0,0.5);
    position: absolute;
}

.paper .heart {
    position: relative;
    width: 200px;
    height: 200px;
    padding: 0;
    border-radius:50%;  
    /* we may need to changeborder-radius; */
}

.paper.image {
    /* padding: 10px; */
}
  
.paper.image p {
    font-size: 30px;
}

img{
    max-height: 500px;
    width: 100%;
    user-select: none;
}

.paper .heart::after{
    content: "";
    background-image: url('https://cdn.pixabay.com/photo/2016/03/31/19/25/cartoon-1294994__340.png');
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: 150px;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.6;
}

p {
    font-family: 'Zeyada';
    font-size: 50px;
    color: rgb(0,0,100);
    opacity: 0.75;
    user-select: none;
    /* filter: drop-shadow(2px 1.5px 1px rgba(0,0,105,0.9)); */
}