.divCentre {
    text-align: center;
    margin: 0 auto;
    max-width: 1200px;
    padding: 20px;
}

body {
    font-family: var(--f400);
    font-weight: 600;
    overflow-x: hidden;
    margin: 0;
    position: relative;
}

#centerPageFrame {
    padding: 8px;
    display: flex;
    margin: 0 auto;
    width: 100%;
    max-width: 1915px;
    position: relative;
    background-color: var(--cBackground);
    background-image: url(/public/maxiB/img/background.webp);
    background-size: cover;
    background-position: top center;
    justify-content: space-between;
    align-content: space-around;
    flex-wrap: wrap;
    flex-direction: row;
    min-height: calc(100vh - 206px);
}

#bodyPage,
#bodyPage2,
#bodyPage3 {
    display: flex;
    min-height: calc(100vh - 50px);
    flex-direction: column;
    margin: 0 auto;
    width: 100%;
    max-width: 1915px;
    position: relative;
    background-color: var(--cBackground);
}
#footerPage {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    width: 100%;
    max-width: 1915px;
    min-height: 50px;
    position: relative;
    background: #C00;
    z-index: 2;
}

#footerPageBg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: #C00;
    z-index: 1;
}
.marge2 {
    margin: 5px auto;
    padding: 0 20px;
}

body {
    width: 100%;
    margin: 0 auto 0 auto;
    padding: 0;
}
@media all and (min-width: 450px) {
    #centerPageFrame {
        padding: 20px;
    }
}

@media all and (min-width: 750px) {
    .marge2 {
        margin: 10px auto;
        padding: 0 20px;
    }
}

#centrePage {
    max-width: 1920px;
    margin: auto;
    width: 100%;
}

.divOpaque {
    border: 1px solid #FFF7;
    border-radius: 14px;
    padding: 20px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    background-color: #FFF3;
    overflow: hidden;
}

.divOpaque > * {
    position: relative;
    z-index: 2;
}

.divOpaque:before {
    /* effet glass */
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    border-radius: 10px;
    background: #FFF8;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
}