/* Réinitialisation de base */
* {
    box-sizing: border-box;
}

body {
    background-color: #f4f4f9; /* Un gris très clair pour le fond */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh; /* Prend toute la hauteur de l'écran */
    margin: 0;
    padding: 20px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

/* Le texte "HTTP/2.0" qui traîne dans le body */
body > :not(table):not(h1) {
    font-size: 1.2rem;
    font-weight: bold;
    color: #3498db; /* Bleu tech */
    margin-bottom: 30px;
}

/* --- LE PLUS IMPORTANT : GESTION DU TABLEAU --- */
table.image {
	width : 20px;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 0 auto;
    /* Ajoute une ombre élégante pour donner du relief à l'image recomposée */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    /* Si tu veux des coins arrondis sur l'image globale : */
    /* border-radius: 10px; */
    /* overflow: hidden; */
}

table.image td {
    padding: 0;
    margin: 0;
    line-height: 0; /* Sécurité supplémentaire contre les espaces */
}

table.image img.image {
    display: block;
    border: 0;
    margin: 0;
    padding: 0;
    /* Optionnel : transition fluide si tu ajoutes des effets au survol */
    transition: opacity 0.3s ease;
}

/* Petit effet bonus : assombrir légèrement l'image au survol global */
/*
table.image:hover img.image {
    opacity: 0.9;
}
*/
