.container{
    margin-top: 20px;
    width: 100%;
    height: 450px;
    overflow-y: scroll;
}
.game{
    width: 100%;
    display: flex;
    flex: no-wrap;
    justify-content:space-around;
    flex-direction: row-reverse;
}
.game_form{
    width: 45%;
}
.game__form button{
    padding: 7px;
    margin-right: 50px;
}
.game__title{
    width: 45%;
    height: 200px;
    /* margin-left: 5%; */
    padding-left: 2%;
    padding-right: 2%;
    background-color: aliceblue;
    border: 1px solid;
}
.game__title h2{
    text-align: center;
}
.game__body{
    display: flex; 
}
.game__left{
    width: 250px;
    padding: 5px 25px;
}
    
.game__items{
    width: 610px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;    
}
.game__item{
    /* width: 33%; */
}
.game__item img{
    width: 200px;
    height: 200px;
}