#canvas{
    width: 500px;
    height:500px;
}

body #first-div{
    display: none;
}

body{
    margin: 0px;
    background-color: rgb(0, 0, 0);
}

#canvas-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Style for the modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

/* Style for the modal content */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 300px;
    text-align: center;
    border-radius: 8px;
}

/* Style for the retry button */
#retryButton {
    padding: 8px 16px;
    background-color: #342DCA;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#playAgainButton {
    padding: 10px 20px;
    background-color: #342DCA;
    color: white;
    border: none;
    cursor: pointer;
}
