/* 기본 설정 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Malgun Gothic', 'Apple SD Gothic Neo', sans-serif;
    background-color: #fcfaf5; /* 따뜻하고 밝은 크림색 배경 */
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    line-height: 1.8;
}

/* 박스 디자인 */
.container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    width: 90%;
    border-top: 5px solid #e67e22; /* 커리를 상징하는 주황색 포인트 */
}

/* 제목 스타일 */
h1 {
    color: #d35400;
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
}

/* 본문 스타일 */
.content p {
    font-size: 17px;
    margin-bottom: 15px;
    word-break: keep-all; /* 한글 줄바꿈을 단어 단위로 */
}

/* 마지막 문장 여백 제거 */
.content p:last-child {
    margin-bottom: 0;
}
