/* CSS Document */

article {    
    width: 80%;
    margin: 0 auto;
}

.header-rapport {
    display: flex;    
    justify-content: space-around;
    gap: 10px;    
    margin: 30px 40px; 
}

.header-rapport > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 30px 40px; 
}

.images-principales {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.images-principales img {
    object-fit: cover;
    max-width: 40%;
}

.para-photos {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.para-photos img {
    height: 150px;
    width: auto;
}

.rapport-galerie {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
}

.rapport-galerie img {
    object-fit: cover;
    width: 100%;
    min-height: 100%;
}

h2 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    color: #393939;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

h3 {
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
    color: #393939;
    font-family: 'Poppins', sans-serif;
}

.reference {
    text-transform: uppercase;
}

#footer {
    position: fixed;
    bottom: -60px;
    left: 0px;
    right: 0px;
    background-color: #ffffff;
    height: 50px;
}

#footer .page:after {
    content: counter(page, decimal);
}

@page {
    margin: 150px 125px 200px 125px;
}