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

.container {
    text-align: center;
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

h1 {
    color: #333;
    margin-bottom: 1rem;
}

.image-container {
    margin-bottom: 1rem;
    width: 200px;
    height: 200px;
    margin: auto;
}

#character-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

#draw-button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

#draw-button:hover {
    background-color: #45a049;
}

#result {
    margin-top: 1rem;
    font-size: 1.2rem;
    color: #333;
    font-weight: bold;
}
