* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #121212;
    color: #e0e0e0;
}

.container {
    min-width: 600px;
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
    background-color: #1e1e1e;
}

.row {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.column {
    display: flex;
    flex-direction: column;
}

.column-1 {
    flex: 1;
    max-width: 33.33%;
}

.column-2-3 {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2d2d2d;
    padding: 1rem;
}

.image-container {
    width: 100%;
    height: 100%;
}

.image-container img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.message {
    padding: 2rem;
    text-align: center;
}

.message h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #e0e0e0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.message p {
    font-size: 1rem;
    font-weight: 400;
    color: #b0b0b0;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.message .date {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1.2rem;
    font-family: monospace;
    letter-spacing: 1px;
}

.message .signature {
    font-style: italic;
    color: #a0a0a0;
    margin-top: 1.2rem;
    font-size: 0.9rem;
}

.message .signature a {
    color: #a0a0a0;
    text-decoration: none;
    border-bottom: 1px dotted #a0a0a0;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.message .signature a:hover {
    color: #d0d0d0;
    border-color: #d0d0d0;
}

/* Media query for responsive design */
@media screen and (max-width: 768px) {
    .container {
        min-width: auto;
        width: 95%;
    }
    
    .row {
        flex-direction: column;
    }
    
    .column-1, .column-2-3 {
        max-width: 100%;
        flex: auto;
    }
    
    .message p {
        font-size: 1.2rem;
    }
}
