
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    color: #333;
}

header {
    background: #ff7043;
    color: white;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
}

header p {
    margin: 5px 0 0;
    font-size: 1.2rem;
}

#game-container {
    max-width: 900px;
    margin: 20px auto;
}

#toolbar {
    display: flex;
    justify-content: center;
    margin: 20px;
}

#toolbar button, #toolbar select, #toolbar input {
    margin: 0 10px;
    padding: 10px 15px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

#toolbar button:hover, #toolbar input:hover, #toolbar select:hover {
    background: #ff8a65;
}

#drawing-canvas {
    border: 2px solid #ff7043;
    border-radius: 10px;
    margin: 20px auto;
    display: block;
    background: white;
}

#artist-info {
    margin: 20px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#artist-info button {
    margin: 5px;
    padding: 10px;
    font-size: 1rem;
    background: #ffca28;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

#artist-info button:hover {
    background: #ffc107;
}
