@charset "utf-8";
/* CSS Document */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
}

body {
   /* background: url('/img/background.jpg') no-repeat center center fixed;
    background-size: cover;
	*/
}

/* Conteneur principal pour centrer l'image */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Style de l'image */
.container img {
    max-width: 100%;
    height: auto;
}
