*{
    margin:0;
    padding:0;
    font-family: 'Fredoka One';
}

.container {
    background-color: aqua;
    display: grid;
    justify-content: center;
    grid-gap: 20px;
    grid-template-rows: repeat(1, 1fr);
    grid-template-columns: repeat(1,  800px);
}

.item {
      height: 200px;
}

.title{
    background-image: url("/assets/logos/pokegames.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;

}

.game{
    background-color: #0c65b0;
}

.game > img {
    max-height: 200px;
    float: left;
}

.game > h2 {
    font-size: 2em;
    color: white;
    float: left;
    padding: 10px 0px 0 20px;
    width: auto;
    display: table;
}

.game > h4 {

    float: left;
    padding: 0 0px 0 20px;
    width: auto;
    color: #ffca00;
    word-wrap:break-word;
   
}

.game > button{
    position: relative;
    /* float: right; */
    width: 26%;
    margin: 25px 20px;
    z-index: 1000;
    font-family: 'Fredoka One';
    background-color: #ffca00;
    color: #3961a7;
    height: 6vh;
    font-size: 1.2em;
}

.off{
   filter: grayscale(100%);
}

.off_image {
      filter: blur(8px);
  -webkit-filter: blur(8px);
}

@media only screen and (max-width: 600px) {
    .container {
        grid-template-columns: repeat(1,  100vw);
    }
    .game > h4 {
        width: 50%;
    }
    
    .game > img {
        max-width: 40vw;
        -webkit-box-shadow: 5px 5px 0px 5px #000000;
        box-shadow: 5px 5px 0px 5px #1e4c72;
    }
}