/* style1.css */

/* Corps de la page */
body {
    background-image: url("image1.jpg");
    background-size: cover;
    background-position: center;
    color: white;
	background-repeat: no-repeat;
	margin: 0;  /* Enlève les marges par défaut autour du body */
    height: 100vh;  /* Fait en sorte que le body prenne toute la hauteur de la fenêtre */
}

/* Table */
table {
    width: 100%;
    border-collapse: collapse;
    background-color: rgba(0, 0, 0, 0.6);
}

td {
    border: 1px solid white;
    padding: 15px;
    text-align: center;
}

/* Conteneur principal */
.contenu {
    background-color: rgba(0, 0, 0, 0.6);
    width: 80%;
    margin: 40px auto;
    padding: 20px;
    border-radius: 10px;
}

/* Titre */
h1 {
    text-align: center;
    color: yellow;
}

/* Paragraphe */
p {
    text-align: center;      /* Centrer le texte à l'intérieur du bloc */
    line-height: 1.6;        /* Hauteur de ligne pour une meilleure lisibilité */
    background-color: rgba(0, 0, 0, 0.5); /* Couleur de fond semi-transparente */
    width: 50%;              /* Largeur du paragraphe */
    padding: 80px;           /* Espacement intérieur */   
    margin: 15px auto;      /* Centrer horizontalement */
}
.titre {
    font-weight: bold;  /* Texte en gras */
    color: white;        /* Texte en bleu */
}

/* Style pour les éléments avec la classe "snt" */
.snt {
    font-style: arial; /* Texte en italique */
    color: red;
	font-size : 20px