body {
    text-align: center;
    background: #fff;
    background-color: rgb(155, 247, 216);
    font-family: Arial, sans-serif;
}

#my-canvas {
    background: #fff;
    margin-left: 10px;
    margin-top: 10px;
}

/* Style the Start button */
#game1-button {
    font-size: 24px;  /* Increase text size */
    padding: 15px 40px; /* Increase button padding */
    margin-left: 20px;
    margin-right: 20px;
    background-color: #007BFF; /* Blue color */
    color: white; /* White text */
    border: none;
    border-radius: 10px; /* Rounded corners */
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

/* Add hover effect */
#game1-button:hover {
    background-color: #5199e6; /* Darker blue */
    transform: scale(1.1); /* Slightly enlarge on hover */
}

/* Add click effect */
#game1-button:active {
    transform: scale(1.05);
}

/* Style the Start button */
#game2-button {
    font-size: 24px;  /* Increase text size */
    padding: 15px 40px; /* Increase button padding */
    margin-left: 20px;
    margin-right: 20px;
    background-color: #007BFF; /* Blue color */
    color: white; /* White text */
    border: none;
    border-radius: 10px; /* Rounded corners */
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

/* Add hover effect */
#game2-button:hover {
    background-color: #5199e6; /* Darker blue */
    transform: scale(1.1); /* Slightly enlarge on hover */
}

/* Add click effect */
#game2-button:active {
    transform: scale(1.05);
}

/* Style the Start button */
#game3-button {
    font-size: 24px;  /* Increase text size */
    padding: 15px 40px; /* Increase button padding */
    margin-left: 20px;
    margin-right: 20px;
    background-color: #007BFF; /* Blue color */
    color: white; /* White text */
    border: none;
    border-radius: 10px; /* Rounded corners */
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

/* Add hover effect */
#game3-button:hover {
    background-color: #5199e6; /* Darker blue */
    transform: scale(1.1); /* Slightly enlarge on hover */
}

/* Add click effect */
#game3-button:active {
    transform: scale(1.05);
}
