body {
   /* background-color: white; */
   background: url(assets/bkg.jpg);
   background-size: cover;
   background-repeat: no-repeat;
    font-family: 'Acme', sans-serif;
    font-size: 20px;
    color: white;
    text-shadow: 0 0 4px #180369;
    align-items: center;
}
#myFishingGame {
    border: 1px solid #d3d3d3;
    background-image: url(assets/bgyes.gif);
}
#maincontent{
    width:auto;
    margin:100px, auto;
    padding:10px;
    margin-left: 25%;
    margin-top: 8%;
}


.btn {
    padding: 10px;
    background-color: #fafa61;
    border-radius: 5px;
    font-family: 'Acme', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid #cf0000;
}
.btn:hover{
    background-color: rgb(0, 116, 249);
    color:aliceblue;
    scale: 1.1;
    border: 1px solid #fafa61;
}


#canvaswrap{
    display:grid;
    grid-auto-flow: row;
}

#scoreboard{
    position:absolute;
    padding: 10px;
    margin: 20px;
    background-color: rgba(51, 51, 51, 0.22);
    border-radius: 2px !important;
    border: 1px solid #d3d3d3;

}
#user_action{
    position:absolute;
    margin: 150px;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    /* margin: 15% 10%;  */
    width: 100%;
    height: 100%;
    overflow: auto;
    text-decoration: none!important;
    text-shadow: none;
    /* background-color: rgba(0, 0, 0, 0.4); */
}

.modal-content {
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.996);
    margin: 15% 25%; /* Center vertically */
    margin-right:none;
    padding: 10px;
    border: 1px solid #c10300;
    width: 50%;
    text-align: center;
    color: rgb(51, 0, 0);
}

.close {
    color: #c20101;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: rgb(32, 0, 0);
    text-decoration: none;
    cursor: pointer;
}