body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("../img/bg.jpg");
    background-repeat: no-repeat;
    background-position: center;
}

.text-center{
    text-align: center;
}

.identity{
    border: 3px solid #ccc;
    border-radius: 5px;
    color: #ccc;
    padding: 10px;
}

.box-card {
    display: flex;
    flex-wrap: wrap;
    width: 233px;
    position: relative;
    background-color: #37474F;
    border: 3px solid #ccc;
    border-radius: 5px;
    margin-top: 20px !important;
    box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);


}

.float-center{
    display: flex !important;
    margin: auto;
    margin-top: 20px !important;
}

.up{
    /*border: 1px solid #ccc;
    padding: 5px;
    box-shadow: 1px 5px 41px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: 1px 5px 41px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 1px 5px 41px 0px rgba(0,0,0,0.75);*/
}

.box {
    width: calc(25% - 7px); /* Lebar kotak kecil */
    height: 50px; /* Tinggi kotak kecil */
    margin: 3px;
    background-color: #3498db;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 3px;
    cursor: pointer;
    background-size: cover;
    border: 1px solid #ccc;
    position: relative;
}   

.box.missed {
    /*background-blend-mode: screen;*/
    opacity: 0.18;
}

.text-lose{
    color: #ff0808 !important;
}


.text-win{
    color: #00ffd6 !important;
}

@keyframes rotate {
    0% {
      transform: rotateY(0deg);
    }
    100% {
      transform: rotateY(360deg);
    }
  }


.rotate{
    animation: rotate 2s infinite linear;
}

.box.waiting{
    background-image: url("../img/bjackpot.jpg");
}