html {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    font-size: 62.5%;
}

body {
    background-image: url('../images/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000;
    font-family: 'arial', serif;
    width: 100%;
    min-height: 100vh;
    position: relative;
    font-size: 0;
    padding: 0;
    margin: auto;
    max-width: 750px;
}

img {
    max-width: 100%;
}

/*OVERLAY*/

.overlay {
    background-color: rgba(28, 30, 33, 0.7);
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
}

/*COBRANDING*/

.label_cobrand {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: #d9d9d9;
    font-size: 12px;
}

/*CTA*/

.box {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
    width: 90%;
    height: 100vh;
    text-align: center;
    font-size: 0 !important;
}

.disclaimer1 {
    font-size: 22px;
    color: white;
    margin: 0 auto 10px;
    font-weight: 800;
}

.disclaimer2 {
    font-size: 23px;
    color: #fff;
    text-decoration: underline;
    padding: 0;
    margin: 0;
}

.button {
    font-size: 31px;
    padding: 20px;
    width: 60%;
    background: #15509a;
    color: #fff;
    margin: 15px 0 10px 0;
    display: inline-block;
    text-decoration: none;
    border-radius: 8px;
    animation-name: button;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

@keyframes button {
    0% {
        color: rgba(255, 255, 255, 0);
    }

    50% {
        color: rgba(255, 255, 255, 1);
    }

    100% {
        color: rgba(255, 255, 255, 0);
    }
}

/*MENTION TARIFAIRE*/

.tarif {
    font-size: 1.2rem;
    color: #fff;
    margin: 0 auto;
    background-color: #191c23;
    width: 65%;
}

/*FOOTER*/

footer {
    text-align: center;
    padding: 12px;
    position: relative;
    background-color: black;
}

footer ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: auto;
    padding: 0;
}

footer ul li {
    display: inline;
    font-size: 10px;
    color: #a5a5a5;
}

footer ul li a {
    color: #a5a5a5;
    text-decoration: none;
}

footer ul li.separator:last-child {
    display: none;
}

footer img {
    max-width: 180px;
    margin: 12px auto;
    display: block;
}

footer img:first-child {
    max-width: 120px;
    margin: 0 auto 12px auto;
}

@media only screen and (min-width : 768px) {

    body {
        background-image: url(../images/bg.png);
        background-size: 52%;
        background-position: center top;
        background-repeat: no-repeat;
        background-color: #000;
        font-family: 'arial', serif;
        width: 100%;
        min-height: 100vh;
        position: relative;
        font-size: 0;
        padding: 0;
        margin: auto;
        max-width: 750px;
    }

    .tarif {
        font-size: 1.2rem;
        color: #fff;
        margin: 0 auto;
        background-color: #1a1e25;
        width: 32%;
    }
}
