/* .g_font {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
} */

body {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    background: rgb(87, 62, 4);
    background-image: url('/static/game/block_puzzle/brick-wall.png');
}
#all_container {
    display: flex;
    flex-direction: column;
    align-items: center;
}


#ui_container {
    display: flex;;
    justify-content: center;
}
.ui {
    font-size: 30px;
    width: 100px;
    height :70px;
    margin:5px 20px ;
    background-color: white;
    border-radius: 10px;
    border: 5px solid #AEC8A4;
}


.ui:active {
    background-color: #AEC8A4; /* 押してる間だけ黄色に */
    transform: scale(0.95); /* ちょっと縮むとより「押した感」あり */
}

#ui_container_2 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px;
}
#selecter {
    font-size: 20px;
    width: 160px;
    height: 40px;
    border-radius: 8px;
    border: 2px solid #444;
    /* margin:30px auto; */
    text-align-last: center;
    display: block;
}
#next_button {
    font-size: 20px;
    width: 160px;
    height :40px;
    margin:5px 20px ;
    color: white;
    background-color: #3B3B1A;
    border-radius: 10px;
    border: 2px solid #E7EFC7;
    position: relative;
    z-index: 999;
}

