/* 전체 페이지 스타일 */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* 컨테이너 */
.container {
    text-align: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 600px;
    width: 90%;
}

/* 제목 */
h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #6200ea;
}

/* 설명 */
p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* 버튼 */
.button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    background-color: #6200ea;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.button:hover {
    background-color: #3700b3;
}

.button:active {
    box-shadow: inset 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* 출력 영역 */
.output {
    margin-top: 20px;
    text-align: left;
}

.output div {
    background: #f0f0f0;
    border-radius: 10px;
    padding: 10px;
    margin: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.output img {
    max-width: 100%;
    border-radius: 10px;
    margin: 10px 0;
}
