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

.container {
    text-align: center;
    max-width: 1200px; /* 충분히 넓은 너비를 설정합니다 */
    width: 100%;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.text-container {
    display: flex;
    justify-content: space-between;
    gap: 20px; /* 텍스트 영역 간의 간격 */
}

textarea {
    width: 48%; /* 두 텍스트 영역이 컨테이너 너비의 48%를 차지하도록 설정 */
    height: 300px; /* 입력란의 높이를 조정 */
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box; /* 패딩과 테두리를 포함한 너비와 높이 설정 */
    resize: vertical; /* 세로 방향으로만 크기 조절 가능 */
}

button {
    padding: 10px 20px;
    border: none;
    background: #5cb85c;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

button:hover {
    background: #4cae4c;
}

#result {
    margin-top: 20px;
    text-align: left;
}
