body {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #38424a08;
}

h1 {
    font-size: 1.9vw;
    font-weight: 600;
    color: #4a90e2;
}

.card {
    width: 34vw;
    height: 20vw;
    overflow: hidden;
    position: relative;
    background-color: #FFF;
    box-shadow: 3px 2px 8px 4px #38424a6d;
}

.backgroundRotate {
    background-color: #2a445e;
    width: 70%;
    height: 200%;
    transform: rotate(-18deg);
    position: absolute;
    top: 0;
    left: 0;
}

.background {
    background-color: #2a445e;
    width: 30%;
    height: 200%;
    position: absolute;
    top: 0;
    left: 0;
}

.left {
    color: #FFF;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 10%;
    display: flex;
    flex-direction: column;
}

.left .top p {
    font-size: 1.1vw;
    margin-bottom: 2vw;
}

.left div.bottom div {
    display: flex;
    align-items: center;
    font-size: 1.1vw;
}

.left img {
    width: 1vw;
    height: 1vw;
    margin-right: 6px;
}

.right {
    position: absolute;
    top: 1.5vw;
    right: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 12vw;
}

.right img:first-child {
    width: 7.2vw;
}

.right div.qr {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.right div.qr img {
    width: 5vw;
}

.right p {
    font-size: 0.57vw;
    text-align: center;
}

.banner {
    position: absolute;
    bottom: 15px;
    right: 0;
    display: flex;
    background-color: #4a90e2;
    color: #FFF;
    font-size: 1.1vw;
    border-radius: 15px 0 0 15px;
    height: 2vw;
    align-items: center;
    width: 90%;
}

.banner li {
    padding: 2px 2.6vw;
    height: 1.1vw;
    display: flex;
    align-items: center;
}

.banner li:not(.banner li:last-child) {
    border-right: 1px #FFF solid;
}

/* Permet de définir la taille minimale de la carte pour la version mobile */
@media screen and (max-width: 1000px) {
    .card {
        min-width: 340px;
        min-height: 200px;
    }

    h1 {
        font-size: 19px;
    }

    .left .top p {
        font-size: 11px;
        margin-bottom: 20px;
    }
    
    .left div.bottom div {
        font-size: 11px;
    }

    .left img {
        width: 10px;
        height: 10px;
    }

    .banner {
        font-size: 11px;
        height: 20px;
    }

    .banner li {
        padding: 2px 26px;
        height: 11px;
    }

    .right {
        width: 120.12px;
    }

    .right img:first-child {
        width: 72px;
    }

    .right div.qr img {
        width: 50px;
    }

    .right p {
        font-size: 5.7px;
    }
}

.socials {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 25px;
    padding: 40px 0;
}