#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;
}

#target_img{
    width: 200px;
    height: 200px;
    border-radius: 20px;
}

.btn_img {
    width: 100px;
    height: 100px;
    padding: 10px;
    border-radius: 20px;
    box-sizing: border-box;
}

.btn_img:hover {
    cursor: pointer;

    border: 2px solid blue;
}

#btn_left:disabled, #btn_right:disabled {
    background-color: gray;
}

#btn_left:enabled, #btn_right:enabled {
    background-color: blue;
}