body, html {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

header,
footer {
    text-align: center;
}

a {
    text-decoration: underline;
    color: #000;
}

header {
    position: fixed;
    z-index: 10;
    width: 100vw;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.5); /* Background transparent */
    backdrop-filter: blur(10px); /* Effet de flou */
    -webkit-backdrop-filter: blur(10px); /* Effet de flou pour Safari */
    padding: 20px 0;
    --md-sys-color-secondary-container: #CCE8E7;
    --md-sys-color-on-secondary-container: #051F1F;
    
    a {
        text-decoration: none;
    }

    md-filled-tonal-button {
        margin: 5px;
    }
}

h1.company-logo {
    font-family: 'Pacifico', serif;
}

hr.header-separator {
    margin-top: 177.5px;
    border: none;
}

.material-symbols-outlined {
    font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24
}

#top-page {
    scroll-margin-top: 185px;
}

div.content {
    padding: 20px;
    text-align: left;
}

.centered-title {
    text-align: center;
}

footer {
    background-color: #CCE8E7;
    padding: 10px 25px 25px 25px;
    margin-top: 25px;
    display: flex;
    flex-direction: row;

    md-filled-button {
        --md-sys-color-primary: #006A6A;
        --md-sys-color-on-primary: #FFFFFF;
    }
}

div.footer-left {
    text-align: left;
    align-items: left;
    justify-content: left;
    width: 50%;

    img.footer-payments-networks {
        margin-top: -15px;
        width: 500px;
    }

    img.footer-mobile-payments {
        margin-top: -15px;
        width: 200px;
    }
}

div.footer-right {
    text-align: right;
    align-items: right;
    justify-content: right;
    width: 50%;
}

div.change-lang-div {
    margin: 0 5px 5px 5px;
}

@media (max-width: 1100px) {
    footer {
        flex-direction: column;
    }

    div.footer-left {
        text-align: center;
        align-items: center;
        justify-content: center;
        width: 100%;

        img.footer-payments-networks {
            width: 85vw;
            max-width: 500px;
        }

        img.footer-mobile-payments {
            width: 85vw;
            max-width: 200px;
        }
    }

    div.footer-right {
        text-align: center;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
}