/* Style de la page web */

body {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    background-color: #000;
    height: 625px;
    font-family: 'Roboto', 'Arial', "Arial Black", "Comic Sans MS", "Courier New", 'Georgia', 'Impact', "New Roman", "Trebuchet MS", 'Verdana', sans-serif;
}

.box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.box img {
    width: 250px;
}

.box h1 {
    color: #fff;
    font-size: 50px;
}

/* Responsive */


/* fenetre à 500px */

@media screen and (max-width: 500px) {
    .box h1 {
        text-align: center;
    }
}

/* Mobile S */

@media screen and (max-width: 320px) {
    .box h1 {
        text-align: center;
    }
}

/* Mobile M */

@media screen and (max-width: 375px) {
    .box h1 {
        text-align: center;
    }
}

/* Mobile */

@media screen and (max-width: 425px) {
    .box h1 {
        text-align: center;
    }
}