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



body{

    height: 100vh;  
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('images/bg.jpeg');
    background-size: 1000px;
    background-position: center center;


}
.paper{
    position: absolute;
    background-image: url('images/paper2.avif');
    background-size: 200px;
    background-position: center center;
    padding: 15px 15px;
    transform: rotateZ(-5deg);
    box-shadow: 1px 15px 28px 0px rgb(0, 0, 0.5);

}

.paper.heart {
    position: relative;
    width: 200px;
    height: 200px;
    padding: 0;
    border-radius: 50%;
}


.paper.image {
    padding: 10px;
}

.paper.image p{
    font-size: 30px;
}

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

.paper.heart::after {
    content: "";
    background-image: url('images/heart.webp');
    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: 'Delicious Handrawn';
    font-size: 25px;
    color: rgb(0, 0, 100);
    opacity: 0.75;
    user-select: none;
}