body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #cceeff; /* 파스텔톤 하늘색 배경 */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    text-align: center;
}

h1 {
    color: #2c5d8f;
    font-size: 2.5rem;
}

.subtitle {
    color: #444;
    font-size: 1rem;
    margin-bottom: 20px;
}

#result-area {
    /* background-color: #ffffff;  <- 이 줄을 삭제하거나 주석 처리합니다 */
    padding: 20px;
    margin-bottom: 20px;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#emoji-display {
    font-size: 5rem;
    margin-bottom: 10px;
}

#description-display {
    font-size: 1.2rem;
    color: #333;
    font-weight: 500;
}

#draw-btn {
    background-color: #5bb2f5; /* 버튼 색상 */
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 10px;
    cursor: pointer;
}

#draw-btn:hover {
    background-color: #4aa1e4;
}