/*temp*/
#titleDiv {
    width : 80%;
    height : 80px;
    
    font-size: 40px;
    border: 1px dotted rgb(54, 54, 54);
    background-color: aliceblue;

    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

#gameDiv {
    width : 80%;
    height : 300px;
    /*border: 1px dotted rgb(54, 54, 54);*/

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

form {
    display: flex;
    flex-direction: column;

    width : 80%;
    padding: 20px;
    border: 1px solid gainsboro;
}

form > div {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    font-size: 20px;
    font-weight: bold;
}

select{
    width: 45%;
    height: 40px;

    margin: 10px;
    padding: 5px;
    font-size: 20px;
}

.inDiv{
    width: 45%;
    height: 40px;

    margin: 5px;
    padding: 5px;
}

.inDiv > input{
    height: 40px;

}

input[read-only]
{
    background-color: beige;
}