@media screen and (max-width: 768px) {
    /* =================== Présentation ==================== */
    .presentation {
        height: 500px;
    }

    .presentation .logo {
        width: 85%;
        max-width: 400px;
        padding: 10px;
    }


    /* =================== Statistiques ==================== */
    .stats-content {
        padding: 0px;
        grid-template-rows: repeat(3,fit-content(100%));
        grid-template-columns: repeat(1,minmax(0,1fr));
    }


    /* =================== Patchnotes ==================== */
    .features {
        grid-template-rows: repeat(3, 1fr);
        grid-template-columns: repeat(1,minmax(0,1fr));
    }

    .feature-content p {
        font-size: 16px;
    }
}