body {
    background-color: #DCDCDC; 

}
 h1 {
    margin: 0;
    padding: 20px;
    text-align: center;
    font-family: 'Georgia', serif; 
    color: #333; 
    font-size: 36px;
    letter-spacing: 1px; 
    z-index: 0;
}
header {
    height: 250px;
    background-color: #778899    ;  
    color: white; 
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}
article h3 {
    font-size: 48px;
    text-align: center;
}
img {
    width: 50px;
    height: auto;
}
.header_title{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: center;
}
.header_title h3 {
    display: inline-block;
    margin: 0;
    font-size: 24px;
    text-align: left;
}
.header_title img {
    display: block;
    max-height: 50px; /* Ajustez la taille si nécessaire */
}
.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.content h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #778899;
    width: 50%;
    border-radius: 5px;
    height: 150px;
    text-align: center;
    
}
@media (max-width: 600px) {
    article {
        display: flex;
        flex-direction: column; 
        align-items: center; 
        text-align: center; 
        margin: 20px auto; 
        padding: 10px; 
        background-color: #fff; 
        border-radius: 10px; 
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    }
    article h3 {
        margin-bottom: 10px; /* Espacement sous le titre */
    }
    article img {
        display: block;
        margin-bottom: 10px; /* Espacement sous l'image */
        max-width: 100%; /* Rendre l'image réactive */
        height: auto;
    }
    article #timer {
        margin: 10px 0; 
        font-size: 18px; 
        color: #333; 
    }
    article p {
        margin-top: 10px; /* Ajoute un espacement au-dessus du paragraphe */
        line-height: 1.6; /* Espacement entre les lignes */
    }
    .content h3{
        width: 50%;
    }
}