*{
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.isHidden{
    display: none;
}
body{
    background-color:rgb(30, 44, 55);
    font-family: Arial, Helvetica, sans-serif;
}
.container{
    min-height: 100vh;
    min-width: 100vw;
    display: flex;

    justify-content: center;
    align-items: center;
    background-color: rgb(30, 44, 55);
}
.gridder{
    height: 80vh;
    width: 80vh;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
   align-items: center;
   background-color:rgb(   19, 33, 45)

}
.cells{
    background-color: rgb(11, 24, 35);
    height: 13vh;
    width: 13vh;
    justify-self: center;
    border-radius: 6px;
    cursor: pointer;
}
.cells:hover{
    scale: 1.01;
}
.diamond{
    background-color: rgb(21, 255, 0.01);
}
.bomb{
    background-color: rgb(255, 0, 0);
}

.control{
    background-color: rgb(38, 54, 66);
    height: 80vh;
    width: 40vh;
}
.sub-heads{
    display: flex;
    justify-content: space-between;
    margin-top: 10vh;

    font-weight: 700;
    color: rgb(158, 165, 186);
}
.money-box,
.mines-box{
    padding: 8px 74px;
    margin-left: 13px;
    background-color: rgb(19, 33, 45);
    border-color: rgb(52, 68, 82);
    border-style: solid;
    font-family: Arial;
    font-weight: 800;
    color: white;
}.money-box{
    margin-bottom: 15px;
}
span{
    font-weight: 700;
    margin-left: 14px;
    color: rgb(158, 165, 186);
}
.mainButton{
    background-color: rgb(0, 255, 55);
    border: none;
    font-family: Arial;
    font-weight: 800;
    color: rgb(0, 0, 0);
    height: 6vh;
    width: 37vh;
    justify-self: center;
    margin-left: 13px;
    margin-top: 20px;
    border-radius: 5px;
    cursor:pointer;
}
.bet-amounts{
    margin-left: 14px;
}
.bet-money{
    margin-right: 14px;
}
.headers{
    background-color: rgb(30, 44, 55);
    display: flex;
    justify-content: center;
    max-width: 100vw;
    padding-top: 5px;
    padding-bottom: 5px;
    border-bottom: 2px rgb(11, 24, 35) solid;
}
.userMoney{
    height: 5vh;
    width: 20vh;
    background-color: rgb(11, 24, 35);
    font-weight: 800;
    color: rgb(255, 255, 255);
    font-family: Arial;
    text-align: center;
    display: flex;
    justify-content: left;
    align-items: center;
    border-radius: 5px;
    padding-left: 10px;
    border-color: rgb(52, 68, 82);
    border-style: solid;
}
.addMoneyButton{
    border: none;
    background-color: rgb(66, 94, 255);
    color: white;
    font-weight: 900;
    width: 10vh;
    height: 5vh;
    align-self: center;
    border-radius: 2px;
}