html, body{
    height: 100%;
    width: 100%;
    
}
body {
    display: flex;
    flex-direction: column;
    
}


body>nav, body>footer {
    flex-shrink: 1;
   
}
body>main {
    flex-shrink: 1;
    flex-grow: 1;
    overflow: auto;
    
}
footer{
    background: #607991;
    color: white;
    font-weight: 500;
    margin-top:1em;
}

/* menu  */
.menu {
    padding-top: 10px;
    padding-bottom: 5px;
}



.menu-box h1 {
     
    text-align: center;
    margin-bottom: 30px;
}

.menu-box ul {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.menu-box ul li {
    list-style-type: none;
    background-color: #3162bb;
    color: white;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

.menu-box ul li:hover {
    background-color: blue;
    color: white;
}

.ticket-item.highlight-item>.card{
    border:5px solid #B6E388;
}



.hadiah {
    
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
}

.box-hadiah {
    background-color: white;
    padding: 5px;
    margin: 2px;
    border-radius: 10px;
    width:150px;
    height:100px;
}

.box-hadiah:hover {
    background-color: #00FFFF;
    transform: scale(1.05);
}

.box-hadiah p {
    font-size:14px;
    text-align: center;
    
}

.kupon {
    
    display: flex;
    flex-wrap: wrap;
    gap: 1px;
    justify-content: center;
}

.box-kupon {
    background-image: url("image/tic.png");
    background-size: cover;
    padding: 8px;
    margin: 2px;
    border-radius: 10px;
    width:120px;
    height:70px;
}

.box-kupon:hover {
    background-color: #00FFFF;
    transform: scale(1.05);
}

.box-kupon h1 {
    font-size:12px;
    margin-left: 9px;
    margin-bottom: 6px;
    text-align: center;
}

.box-kupon p {
    
    font-size:12px;
    line-height: 0.4;
    text-align: center;
}

.hombox {
    background-image: url("image/bg.jpg");
    background-size: cover;
}



#ticket-list{
    /* scroll-behavior: smooth; */
}
div#win_template {
    width: 100%;
    height: 100%;
}

div#win_template>img {
    width: 100%;
    object-fit: contain;
}
div#winner_name {
    position: absolute;
    bottom: 8em;
    z-index: 1;
    color: #fff;
    width: 100%;
    text-align: center;
    text-shadow: 2px 2px 5px #000;
}
div#winner_greet {
    position: absolute;
    top: 2em;
    z-index: 1;
    width: 100%;
    color: #FFF;
    text-shadow: 2px 2px 5px #000;
}
