*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
}
body {
    background: rgb(242, 202, 141);
    box-sizing: border-box;
    user-select: none;
}
main {
    width: 33rem;
    margin: 33px auto;
    border: 3px solid #84766b;
    border-radius: 15px;
    background: rgb(242, 202, 141);
}
.header_main{
    text-align: center;
    user-select: none;
    -webkit-user-select: none;
}
.header_b{
    margin-right: 7px;
    display: inline-block;
}
.container{
    border-radius: 5px 5px 5px 5px;
    background: #662803;
    width: 32rem;
    height: 30rem;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.container .option_item{
    display: block;

    width: 5.7rem;
    height: 5.7rem;

    border: 3px solid #84766b;
    border-radius: 15px;

    cursor: pointer;
    justify-content: center;
    align-items: center;
    position: relative;
    
}
.option_inner{

    width: 5.34rem;
    height: 5.34rem;
    padding: 0.2rem;

    background: #ffffff;
    border-radius: 12px;
    font-size: 0.9rem;

    cursor: pointer;
    color: #000000;

    display: flex;
    flex-direction: column;

    justify-content: center;
    text-align: center;
}
.option_item .checkbox{
    position: absolute;

    z-index: 1;
    opacity: 0;
}
.option_item .option_inner .name{
    user-select: none;
    -webkit-user-select: none;
    font-size: 13px;
}
.option_item .checkbox:checked ~ .option_inner{
    border-color: rgb(0, 17, 255);
    background-color: rgb(124, 172, 240);
}
.option_item .option_inner:hover {
    background-color: #9c9c9c;
}

.points{
    width: 512px;
    margin: 5px;
    display: inline-block;
}

#help{ 
    float: inline-end;

}
.patch{
    margin: 30px;
}