body{
    margin: 0;
    padding: 0;
    background-color: #F8F8F8;
    font-family: Arial;
}

h1,h2,p{
    margin: 0;
    padding:0;
}

h1{
    text-transform: uppercase;
    margin-top: 2vw;
}

p{
    margin-top: 1vw;
}

.content{
    background-color: #FFFFFF;
    padding: 3vw;
}

.navigation a{
    display: inline-block;
    background-color: #FFFFFF;
    padding: 0.6vw;
    text-decoration: none;
    font-weight: bold;
    color: #000000;
    text-transform: uppercase;
    border-right: 1px solid #E1E1E1;
    border-bottom: 1px solid #E1E1E1;
    border-top: 1px solid #E1E1E1;
    transition: 0.2s;
}

.navigation a:hover{
    background-color: #58c2f3;
    color: #FFFFFF;
}

.listGames{
    display: flex;
    flex-flow: wrap;
    margin-top: 2vw;
    border-top: 1px dotted #E1E1E1;
    padding-top: 2vw;
}

.listGames>div{
    width: 10%;
    background-color: #F8F8F8;
    margin-bottom: 2vw;
    margin-left: 1vw;
    box-sizing: border-box;
    padding: 1vw;
    transition: 0.2s;
    border-radius: 10px;
}

.listGames>div:hover{
    background-color: #58c2f3;
    cursor: pointer;
    color: #FFFFFF;
    box-shadow: 0px 0px 15px rgba(0,0,0, 0.3);
}

.listGames>div img{
    width: 100%;
    margin-bottom: 0.5vw;
    border: 3px solid #FFFFFF;
    box-sizing: border-box;
}

span.title{
    font-weight: bold;
}

.compteur{
    margin-top: 2vw;
    font-weight: bold;
    font-size: 1.2em;
    text-transform: uppercase;
}

.fiche{
    margin-top: 2vw;
    font-weight: bold;
    font-size: 1.2em;
    text-transform: uppercase;
    display: flex;
    flex-flow: row;
    justify-content: flex-start;
}

.other{
    font-size: 0.7em;
    text-transform: uppercase;
    margin-top: 0.5vw;
    text-align: right;
}

.otherBis{
    font-size: 0.7em;
    text-transform: uppercase;
    margin-top: 0.5vw;
    text-align: left;
}

.jaquette{
    position: relative;
}

.cover{
    position: relative;
    margin-right: 2vw;
}

.cover img{

    border-radius: 10px;
}

.platform{
    position: absolute;
    right: 3px;
    top: 3px;
    background-color: #666666;
    padding: 0.3vw;
    color: #FFFFFF;
    font-size: 0.7em;
}

.navigation{
    display: flex;
    flex-flow: row;
    justify-content: space-between;
}

.navigation input[type="text"]{
    background-color: #FFFFFF;
    padding: 0.5vw;
    color: #666666;
    text-transform: uppercase;
    border: none;
    height: 100%;
    box-sizing: border-box;
    width: 25vw;
}

.navigation input[type="submit"]{
    display: none;
}

nav{
    text-transform: uppercase;
    font-size: 0.8em;
}

.igdb{
    margin-top: 2vw;
    display: inline-block;
    background-color: #F8F8F8;
    padding-left: 2vw;
    padding-right: 2vw;
    padding-top: 1vw;
    padding-bottom: 1vw;
    font-size: 0.7em;
    color: #000000;
    text-decoration: none;
    transition: 0.2s;
}

.igdb:hover{
    background-color: #58c2f3;
    color: #FFFFFF;
}

@media only screen and (max-width: 800px) {
    .listGames>div{
        width: 48%;
        background-color: #F8F8F8;
        margin-bottom: 2vw;
        margin-left: 1vw;
        box-sizing: border-box;
        padding: 1vw;
        transition: 0.2s;
        border-radius: 10px;
    }

    .navigation{
        display: flex;
        flex-flow: column;
        justify-content: space-between;
        font-size: 0.8em;
    }

    .navigation input[type="text"]{
        background-color: #E1E1E1;
        padding: 0.5vw;
        color: #666666;
        text-transform: uppercase;
        border: none;
        height: 100%;
        box-sizing: border-box;
        width: 100vw;
        box-sizing: border-box;
        padding: 2vw;
    }
}