body {
    margin: 0px;
    padding: 0px;
}

@font-face {
    font-family: "MyFont";
    src: url("MyFont.otf"); /* IE9 Compat Modes */
}

.imageBox {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.imageBox div img.logo {
    padding: 60px;
    width: 450px;
}

.imageBox div {
    width: 100vw;
    text-align: center;
}

.poweredBy {
    font-family: "MyFont", "helvetica", "arial";
    position: absolute;
    font-size: 14px;
    letter-spacing: 2px;
    right: 20px;
    bottom: 10px;
    color: rgb(47, 55, 91);
    margin: 0px;
}

.poweredBy a:hover,
.poweredBy a:visited {
    color: rgb(47, 55, 91);
}

.poweredBy a {
    margin: 0px;
    text-decoration: none;
}

.poweredBy .text {
    color: #cfcfcf;
    padding-right: 8px;
    bottom: 15px;
    position: relative;
}

.fbLink img {
    margin-top: 30px;
    margin-left: 10px;
    margin-right: 10px;
}

.quote-card {
    width: 100%;
    min-height: 520px;
    background: #ffffff;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    font-family: "Cinzel", "Trajan Pro", "Times New Roman", serif;
}

.quote-text {
    text-align: center;
    color: #666666;
    font-variant: small-caps;
    letter-spacing: 9px;
    font-size: 20px;
    font-weight: 400;
}

.quote-author {
    text-align: right;
    color: #0b3f52;
    font-variant: small-caps;
    letter-spacing: 7px;
    font-size: 16px;
    margin-top: 25px;
    font-weight: 500;
}

.quote-social {
    text-align: right;
    margin-top: 18px;
    padding-right: 25px;
}

.quote-social a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #0b3f52;
    font-family: "Cinzel", "Trajan Pro", "Times New Roman", serif;
    font-variant: small-caps;
    letter-spacing: 4px;
    margin-top:25px;
    font-size: 16px;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.quote-social a:hover {
    opacity: 0.75;
    transform: translateY(-1px);
}

.facebook-icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
}

.facebook-icon svg {
    width: 100%;
    height: 100%;
    fill: #1877f2;
}

/* Responsive smartphone uniquement */
@media (max-width: 768px) {
    .imageBox {
        height: auto;
        min-height: 100vh;
        align-items: flex-start;
        padding: 30px 16px 60px;
        box-sizing: border-box;
    }

    .imageBox div {
        width: 100%;
    }

    .imageBox div img.logo {
        width: 280px;
        max-width: 80vw;
        padding: 30px 0 40px;
    }

    .quote-card {
        min-height: auto;
        padding: 0 10px;
    }

    .quote-text {
        letter-spacing: 3px;
        font-size: 18px;
        line-height: 1.7;
    }

    .quote-text p {
        margin: 0 0 16px;
    }

    .quote-author {
        text-align: center;
        letter-spacing: 4px;
        font-size: 15px;
        margin-top: 30px;
        padding: 0 10px;
    }

    .quote-social {
        text-align: center;
        padding-right: 0;
        margin-top: 18px;
    }

    .quote-social a {
        justify-content: center;
        gap: 8px;
        letter-spacing: 2px;
        font-size: 14px;
    }

    .facebook-icon {
        width: 24px;
        height: 24px;
    }

    .poweredBy {
        position: static;
        text-align: center;
        margin: 20px 0 15px;
        font-size: 12px;
    }
}

/* Très petits écrans */
@media (max-width: 380px) {
    .imageBox {
        padding-left: 12px;
        padding-right: 12px;
    }

    .imageBox div img.logo {
        width: 230px;
        max-width: 78vw;
        padding-top: 25px;
        padding-bottom: 35px;
    }

    .quote-text {
        font-size: 16px;
        letter-spacing: 2px;
        line-height: 1.65;
    }

    .quote-author {
        font-size: 13px;
        letter-spacing: 3px;
    }

    .quote-social a {
        font-size: 13px;
        letter-spacing: 1.5px;
    }
}