body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5; /* Light gray */
    color: #333;
}

header,
footer {
    background-color: #ff6f61; /* Coral */
    color: #fff;
    padding: 1em;
    text-align: center;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff; /* White */
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

canvas {
    display: block;
    margin: 20px auto;
    border: 2px solid #ff6f61; /* Coral */
    border-radius: 20px; /* Larger border radius */
    background-color: #fff; /* White */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.drawing-tools {
    text-align: center;
    margin-bottom: 20px;
}

.drawing-tools button,
.action-buttons button {
    padding: 10px 20px;
    background-color: #ffc93c; /* Yellow */
    color: #333; /* Dark gray */
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-right: 10px;
    font-size: 1em; /* Larger font size */
}

.drawing-tools button.active {
    background-color: #ff6f61; /* Coral */
    color: #fff; /* White */
}

input[type="color"] {
    border: none;
    border-radius: 10px;
    padding: 5px;
    margin-left: 10px;
}

.action-buttons {
    text-align: center;
    margin-top: 20px;
}

footer {
    margin-top: 50px;
    text-align: center;
    font-size: 0.8em;
}

.score {
    text-align: center;
    margin-top: 20px;
    font-size: 1.2em;
    font-weight: bold;
    color: #ff6f61; /* Coral */
}

.challenge {
    margin-bottom: 20px;
    font-size: 1.2em;
    font-weight: bold;
    color: #ff6f61; /* Coral */
}
/* Add this style to center the canvas */
canvas {
    display: block;
    margin: 20px auto;
    border: 2px solid #ccc;
    border-radius: 20px; /* Larger border radius */
    background-color: #fff; /* White */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    width: 100%; /* Full width */
    height: auto; /* Automatically adjust height */
}
/* Add this style to center the canvas */
canvas {
    display: block;
    margin: 20px auto;
    border: 2px solid #ccc;
    border-radius: 20px; /* Larger border radius */
    background-color: #fff; /* White */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    width: 100%; /* Full width */
    height: auto; /* Automatically adjust height */
}
