body {
    font-family: "Arial", sans-serif;
    font-size: 14pt;
    color: orange;
    background-color: #F1F1F1;
    /* Chemin de l'image de fond ajusté :
       Si style.css est dans un dossier 'css', et 'images' est au même niveau que 'index.html',
       alors utilisez '../images/PANC2.jpg'
       Si style.css est au même niveau que 'index.html' et 'images', utilisez 'images/PANC2.jpg' */
    background-image: url(../images/PANC2.jpg);
    background-position: center;
    background-size: cover; /* Assure que l'image de fond couvre toute la zone */
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin: 0;
    font-weight: bold;
    text-align: center;
}

body, td, th {
    font-style: normal;
    font-weight: bold;
    text-align: center;
    color: #ffffff; /* Couleur du texte par défaut */
}

header {
    display: block;
    background-color: orange;
    text-align: center;
    font-size: 12pt;
}

nav {
    background-color: orange;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

nav li {
    margin: 5px;
    padding: 5px;
    height: 21px;
    background-color: rgba(255, 255, 255, 1.00);
    border: 1px solid #9EA0A1;
    text-align: center;
    flex: 1 1 auto;
}

nav li a {
    display: block;
    text-decoration: none;
    color: black;
}

article {
    margin: auto;
    padding: 3px;
    width: 60%;
    background-color: red;
    text-align: justify;
}

label {
    display: inline-block;
    width: 80px;
    text-align: left;
    font-weight: bold;
    margin-left: 15px;
}

input.bouton {
    background-color: #FFFFFF;
    font-weight: bold;
    color: red;
    margin-top: 15px;
}

.social {
    text-align: center;
    margin-top: 20px;
}

.social a {
    color: white;
    text-decoration: none;
    margin: 5px;
    font-size: 18pt;
    display: inline-block;
}

.social img {
    border-radius: 50%; /* Rend les images rondes */
    width: 91px; /* Définit la largeur des images */
    height: 73px; /* Définit la hauteur des images */
    vertical-align: middle;
    margin: 5px;
}

#div_horloge {
    display: inline-block;
    font-size: 20pt;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
}

a:link {
    color: #2203E9;
}
a:visited {
    color: #040675;
}
a:hover {
    color: #D51C1F;
}
a:active {
    color: #FFFFFF;
}

footer {
    margin-top: 30px;
    padding: 10px;
    color: white;
    font-size: 10pt;
}

footer a {
    color: white;
    text-decoration: none;
}
