
body,
html {
  width: 100%;
  height: 100%;
  display: table;
  text-align: center;
}

body {
  background: #ffff;
}

.a4-container {
    width: 210mm;
    height: 297mm;
    margin: 0 auto; /* Centre la page sur l'écran */
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Optionnel : effet de ombre portée */
}

.a4-container img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Garde les proportions de l'image sans la déformer */
}

