body {
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("https://www.psdgraphics.com/wp-content/uploads/2022/01/white-math-paper-texture.jpg");
  background-size: cover;
  background-position: center;
}

/* Paper Cards */
.paper {
  background-image: url("https://i0.wp.com/textures.world/wp-content/uploads/2018/10/2-Millimeter-Paper-Background-copy.jpg?ssl=1");
  background-size: 600px;
  padding: 20px 50px;
  transform: rotateZ(-4deg);
  box-shadow: 1px 15px 20px rgba(0,0,0,0.4);
  position: absolute;
  border-radius: 12px;
  touch-action: none;
}

.paper.heart {
  width: 200px;
  height: 200px;
  padding: 0;
  border-radius: 50%;
}

.paper.image {
  padding: 20px;
}

img {
  width: 260px;
  max-width: 80vw;
  border-radius: 10px;
  user-select: none;
}

/* Text */
p {
  font-family: "Great Vibes", cursive;
  font-size: 38px;
  color: #4b0082;
  opacity: 0.95;
  text-align: center;
  user-select: none;
}

.small {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #8a2be2;
}

.paper:nth-of-type(3n) {
  background-position: left top;
}
