/* Crée par Alex Da Silva Vieira
    le 10.01.2025
    Pour les pages du group a (Histoire , Fonctionnement, Point positif , Point négatif)
 */
body {
    background-color: #DCDCDC; 
    overflow: hidden;
    height: 100%;
}

html {
    overflow: auto;
    -ms-overflow-style: none; 
    scrollbar-width: none; 
}

h1 {
    margin: 0;
    padding: 20px;
    text-align: center;
    font-family: 'Georgia', serif; 
    color: #333; 
    font-size: 36px;
    letter-spacing: 1px; 
    text-transform: uppercase; 
}

/*Média queries*/
@media (max-width: 600px) {
    h1 {
        font-size: 25px;
    }
}

@media (max-width: 400px) {
    article h3{
        text-align: left;
    }
}

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: 28px;  
    font-weight: bold;
    margin: 1.5em 0; 
    color: #1e3d58; 
    text-transform: capitalize; 
}



article img {
    width: 350px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px; 
    border: 3px solid #ddd; 
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1); 
}

article p {
    width: 50%;
    font-size: 16px;  
    color: #555; 
    line-height: 1.8;
}


