body {
    background-color: #1a1a1a; /* 아주 어두운 배경 */
    color: #b3b3b3;           /* 희미하고 차분한 회색 글씨 */
    font-family: 'serif', 'Georgia', 'Times New Roman'; /* 편지 느낌의 명조체 */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    max-width: 600px;
    padding: 40px;
    background-color: #262626; /* 배경보다 살짝 밝은 박스 */
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

h1 {
    color: #e0e0e0;
    font-size: 1.5em;
    margin-bottom: 20px;
}

hr {
    border: 0;
    border-top: 1px solid #444;
    margin-bottom: 30px;
}

p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.signature {
    margin-top: 40px;
    font-style: italic;
    color: #888;
}