body {
    font-family: 'Dancing Script', cursive;
    background-color: #f9f4f0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.carta {
    background-color: #f8f8f8;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 20px; /* Reduje el padding para mejor ajuste en móviles */
    width: 90%; /* Aumento el ancho para mayor legibilidad en móviles */
    max-width: 650px;
}

.header-image {
    position: relative;
    margin-bottom: 20px; /* Reduje el margen para mejor ajuste en móviles */
    border-radius: 10px;
    overflow: hidden;
}

.foto {
    width: 100%;
    height: auto;
    display: block;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.contenido {
    line-height: 1.8;
    color: #4a4a4a;
    font-size: 1.2em; /* Aumento el tamaño de la fuente para mejor legibilidad */
}

.saludo, .firma, .nombre {
    text-align: center;
    margin-bottom: 15px; /* Reduje el margen para mejor ajuste en móviles */
}

.saludo {
    font-size: 2.2em; /* Aumento el tamaño del saludo */
    color: #c2a792;
}

.firma {
    margin-top: 20px; /* Reduje el margen para mejor ajuste en móviles */
}

/* Media query para dispositivos móviles */
@media (max-width: 600px) {
    .contenido {
        font-size: 1.1em; /* Ajuste para pantallas más pequeñas */
    }
    .saludo {
        font-size: 2em; /* Ajuste para pantallas más pequeñas */
    }
}