.game-details {
    cursor:pointer;
    color: black;
}

.game-details a {
    color: blue;
}
.game-details > img
{
    width: 50%;
}

.game-details > .content {
    background-color: #e4b65c;
    width: 47%;
    padding-top: 30px;
    padding-bottom: 30px;
}

.game-details > .bottom-game-border {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
    margin-top: -30px;
}

.game-details .img-game,
 .game-details iframe {
    width: 90%;
}

.game-details .game-hidden-part {
    display: none;
}

@media all and (min-width:900px) {
    .game-details iframe {
        height: 500px;
    }
}

@media all and (min-width:450px) and (max-width:900px) {
    .game-details iframe {
        height: 250px;
    }

    .game-details h1 {
        font-size: 24px;
    }
}

@media all and (min-width:450px) {
    .game-details > .content {
        margin-top: -30px;
    }
}

@media all and (max-width:450px) {
    .game-details > .content {
        margin-top: -20px;
    }

    .game-details iframe {
        height: 150px;
    }

    .game-details h1 {
        font-size: 14px;
    }
}