body {
  margin: 0;
  padding: 0;
  background-color: #f5e2ce;
  font-family: Georgia, serif;
}

.fondo-rojo {
  background-image: url('rojo.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px;
}

.carta {
  position: relative;
  width: 450px;
  height: 750px;
}

.carta img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 2px solid #b53324;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.texto-superpuesto {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  color: #4a2b1f;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: rgba(245, 226, 206, 0.75);
  padding: 30px;
}