body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("assets/old-dark-wooden-surface.jpg");
  background-size: cover;
  filter: blur(4px);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  opacity: 0.06;
  background-image: radial-gradient(rgba(0, 0, 0, 0.4) 1px, transparent 1px);
  background-size: 4px 4px;
  pointer-events: none;
  mix-blend-mode: multiply;
}

body {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.postcard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/pastel-yellow-vignette-concrete-textured-background.jpg");
  opacity: 0.12;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.postcard {
  width: min(1100px, 90vw);
  min-height: 500px;
  height: auto;
  background: #efe2c5;
  display: flex;
  padding: 25px;
  border-radius: 4px;
  transform: rotate(-2deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
}

.left-side {
  width: 45%;

  display: flex;
  align-items: center;
}

.right-side {
  width: 55%;
  padding-left: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#img-put-here {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  filter: sepia(40%) contrast(90%) brightness(90%);
}

#postcard-text {
  font-family: Georgia, serif;
  white-space: pre-line;
  font-size: 20px;
  line-height: 1.8;
  color: rgba(40, 25, 15, 0.85);
}
