/* Crée par Alex Da Silva Vieira
    le 10.01.2025
    Pour la page histoire
 */


article h3 {
    font-size: 28px;  
    font-weight: bold;
    margin: 1.5em 0; 
    color: #1e3d58; 
    text-transform: capitalize; 
}

article .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1em;
    gap: 40px; 
}

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;
}

#reverse {
    flex-direction: row-reverse;
    gap: 40px; 
}


/* Media Queries */

@media  (max-width : 600px){
    article img {
        display: none;
    }

    article p {
        text-align: center;
        width: 100%;
    }

    article h3 {
        font-size: 22px;
    }
}