.our-games-box {
    display: flex;
    flex-direction: row;
    width: 80%;
    justify-content: space-between;
}
.our-games-box img {
    height: 150px;
}

.our-games-info-box {
    display: flex;
    flex-direction: column;
    width: 300px;
}

.our-games-info-box h2 {
    margin-top: 0px;
    margin-bottom: 0px;
}

.our-games-info-box input{
    width: 115px;
}

.our-games-info-box input:first-child{
    padding-right: 6px;
}

.our-games-info-box input:last-child{
    padding-left: 6px;
}

.our-games-button-box {
    display: flex;
    align-self: flex-start;
}

.game-btn {
    cursor: pointer;
}

.out-games-box-btns-mobile {
    display: none;
}

@media only screen and (max-width: 600px) {
    .our-games-box {
        width: 100% !important;
    }

    .game-screen {
        margin-right: 25px;
    }

    .our-games-button-box {
        display: none;
    }

    .out-games-box-btns-mobile {
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: center;
    }

    .game-btn {
        height: 50px;
        margin: 20px 15px 0 15px;
    }
}