
body{
    margin: 0;
    font-size: 16px;
    background-color:  rgb(93,159,234);
    font-family: 'Arial Nova', sans-serif;
    font-weight: 400;
}
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none;
}
.custom-box{
    max-width: 600px;
    background-color: #ffffff;
    margin: 20px auto;
    padding: 30px;
    animation: fadeInRight 1s ease;
}
@keyframes fadeInRight{
    0%{
        transform: translateX(40px);
        opacity: 0;
    }
    100%{
        transform: translateX(0px);
        opacity: 1;
    }
}
.custom-box::before,
.custom-box::after{
    content: '';
    clear: both;
    display: table;
}
.custom-box.hide{
    display: none;
}  

.theme-box {
    display: flex;
    flex-direction: column;
    align-items: center;

}
.theme-box p{
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 22px;
    color: #000000;
    font-weight: 500;
}
.theme-box h3{
    font-size: 18px;
    text-align: center;
    margin-bottom: 10px;
    color: #18045e
}

.theme-box p span{
    font-weight: 500;
}
.theme-box .btn{
    margin-top: 15px;
}
.btn{
    padding: 15px 30px;
    background-color: rgb(93,159,234);
    color:#ffffff;
    border:none;
    font-family: 'Arial Nova', sans-serif;
    font-size: 18px;
    cursor: pointer;
    display: inline-block;
}

.game-box .highlight-number,
.game-box .highlight-text,
.game-box .highlight-hit,
.game-box .next-highlight-btn,

.game-box .highlight-number{
    font-size: 12px;
    color: #090544;
    text-align: center;
    font-weight: 550;
    margin: 0;

}
.game-box .highlight-text{
    font-size: 16px;
    color: #000000;
    text-align: left;
    line-height: 22px;
    font-weight: 500;
    padding: 20px 0;
    margin: 0;
}
.game-box .highlight-text img{
    align-items: center;
    max-width: 50%;
    display: block;
    margin: 0 auto;
    margin-top: 15px;
}

.game-box .highlight-hit{
    font-size: 18px;
    color: #000000;
    text-align: left;
    line-height: 22px;
    font-weight: 500;
    padding: /*20px*/ 0;
    margin: 0;
}
.game-box .btn{
   margin: 15x 190px;
   margin-top: 15px;
}

.result-box{
    text-align: center;
}
.result-box.hide{
    display: none;
}
.result-box h1{
    font-size: 22px;
    line-height: 42px;
    color: #18045e;
}
.result-box a{
    font-size: 22px;
    line-height: 42px;
    color: #1428dd;
}
.result-box table{
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}
.result-box table td{
    border:1px solid #cccccc;
    padding: 8px 15px;
    font-weight: 500;
    color: #000000;
    width: 50%;
    text-align: left;
    font-size: 18px;
}
.result-box .btn{
    margin-right: 15px;
}
@media(max-width: 767px){
    .result-box .btn{
        margin-bottom: 15px;
    }
    body{
        padding: 15px;
    }
}
.center {
    margin-left: auto;
    margin-right: auto;
    display: block
}
.credit-box h3{
    text-align: center;
}
.credit-box{
    font-size: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.credit-box .btn{
    margin: 15px 190px;
}
