body {
    font-family: 'Homemade Apple', cursive;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url('https://i.pinimg.com/736x/22/5b/2f/225b2f52749f63e09bcec18aff1af247.jpg');
    background-size: cover;
    background-position: center;
    margin: 0;
    padding: 1rem;
    box-sizing: border-box;
}

.letter {
    background-image: url('https://i.pinimg.com/736x/6c/6f/ca/6c6fca464b182b8255cc825f31f096f3.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 30px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
}

/* Section spacing */
.sender-address,
.recipient-address,
.date,
.salutation,
.body,
.closing,
.signature {
    margin-bottom: 20px;
}

/* Body text styles */
.body p {
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Closing spacing */
.closing p {
    margin-top: 30px;
}

/* Signature style */
.signature p {
    font-size: 15px;
}

/* Responsive for small screens */
@media (max-width: 600px) {
    .letter {
        padding: 20px;
    }

    .body p {
        font-size: 1rem;
    }

    .signature p {
        font-size: 20px;
    }
}
