/* ----- RESET ----- */
* {
    padding: 0;
    margin: 0;
    border: 0;
    font-size: 1em;
    box-sizing: border-box;
}

/* ----- REGLAGES GENERAUX ----- */

html {
    scroll-behavior: smooth;
}

a {
    font-weight: bold;
    text-decoration: none;
    color: #0f7189;
}

a:hover {
    opacity: 0.8;
}

body {
    background-color: whitesmoke;
    font-family: Arial, sans-serif;
    max-width: 100%;
    color: #1e1e1e;
}

#categorie img,
#accueil img,
#bloc_1 img,
#logo img {
    max-width: 148px;
}

#bloc {
    font-family: 'Playwrite AU VIC Guides', sans-serif;
    width: 1200px;
    margin: auto;
    font-weight: bold;
}

header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 2em;
}

#logo img {
    border: 5px solid #48C3E3;
    border-radius: 100px;
}

h1 {
    font-size: 5em;
}

h2 {
    text-align: center;
    font-size: 1.7em;
    margin-bottom: 1em;
}

h3 {
    font-size: 2.5em;
}

h4 {
    font-size: 2.5em;
    text-align: center;
}

p {
    font-size: 1.1em;
}

main {
    display: flex;
    padding: 1em;
}

aside {
    width: 30%;
    padding: 1em;
}

aside p {
    margin-bottom: 0.3em;
}

aside a {
    display: block;
}

#liste_jeux {
    background-color: #48C3E3;
    padding: 2em;
    border-radius: 20px;
}

#contenu {
    width: 70%;
    padding: 1em; 
}

#detail_jeu, #accueil, #categorie {
    background-color: #F44453;
    padding: 2em;
    border-radius: 20px;
}

#categorie p, #detail_jeu p, #categorie img, #detail_jeu img {
    margin-left: 1em;
}

#accueil img {
    border: 2px solid #48C3E3;
    border-radius: 20px;
    margin: 1em;
}

#categorie img {
    border: 2px solid black;
    border-radius: 20px;
    margin: 1em;
}

.contenant {
    display: inline-block;
    position: relative;
    z-index: 1;
}

.nombre {
    position: absolute;
    background-color: whitesmoke;
    font-weight: bold;
    border-radius: 20px;
    padding: 0.5em;
    bottom: 1.5em;
    right: 1.3em;
    z-index: 2;
}

.liens {
    font-weight: bold;
    text-align: center;
    font-size: 3em;
}

#bloc_1 {
    display: flex;
    align-items: center;
    margin-bottom: 3em;
}

#bloc_1 img {
    border: 2px solid black;
    border-radius: 20px;
    width: 30%;
    text-align: left;
}

#bloc_1 h3 {
    width: 70%;
    text-align: center;
    margin-left: 1em;
}

#detail_jeu p {
    margin-bottom: 0.3em;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1em;
}

.tres_gros {
    font-size: 2em;
}

.gros {
    font-size: 1.3em;
}

/* ----- MEDIA QUERIES ----- */
@media (max-width: 1000px) {
    aside, h1 {
        display: none;
    }
    #contenu {
        width: 100%;
    }
    h2 {
        font-size: 4.4em;
    }
    h3 {
        font-size: 5.2em;
    }
    h4 {
        font-size: 5.2em;
    }
    p {
        font-size: 3.8em;
    }
    .liens {
        font-size: 7em;
    }
    #categorie img, #accueil img, #bloc_1 img, #logo img {
        max-width: 300px;
    }
    #detail_jeu p {
        margin-left: 0;
    }
    .nombre {
        font-size: 2em;
        bottom: 0.8em;
        right: 0.7em;
    }
    footer {
        display: none;
    }
}