* {
    margin: 0px;
    padding: 0px;
}

body {
    background: #1c363d;
    color: #fff;
    font-size: 75%;
    font-family: Sans-Serif;
}

#title {
    text-align: center;
    margin: 10px 0;
}

h1 {
    font-size: 200%;
    text-decoration: none;
}

.mobile {
    width: 86px;
    height: 86px;
    background: url("images/mobile.png") no-repeat center;
    margin: -88px 0 0 0;
    position: absolute;
}

.wrapper {
    justify-content: center;
    flex-wrap: wrap;
    /* Les éléments passent à la ligne si trop larges */
    flex-direction: row;
    /* affichage horizontal */
    display: block;
    /* IE fix */
    display: flex;
    /* crée un contexte flex pour ses enfants */
    margin: 0 15px;
}

.game_thumb {
    background: #264046;
    margin: 0 10px 30px;
    text-align: center;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    color: #00c2ff;
    max-width: 400px;
    position: relative;
}

.game_thumb img {
    vertical-align: bottom;
    width: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.game_thumb p {
    color: #fff;
    margin: 6px 4px;
}

.date {
    color: #86c8da !important;
    text-align: right;
    font-size: 75% !important;
}

img,
object,
embed,
canvas,
video,
audio,
picture {
    max-width: 100%;
    height: auto;
}

@media screen and (max-device-width: 320px) {
    .wrapper {
        flex-direction: column;
        flex-wrap: nowrap;
    }
}

#footer {
    max-width: 700px;
    text-align: center;
    padding: 10px 0 10px;
    background: #264046;
    margin: 0 auto 30px;
    border: 1px dashed #4d6f77;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

#footer ul {
    list-style-position: inside;
}

#footer p:first-child {
    font-weight: bold;
    font-size: 1.4em;
    margin-bottom: 5px;
}

#footer ul {
    padding: 0 20px;
    text-align: left;
}


/*/////////////////// LINKS ///////////////////*/

a:link {
    color: #00fff5;
}

a:visited {
    color: #009fff;
}

a:hover {
    color: #99e7ff;
}

a:active {
    color: #00fff5;
}