* {
    margin: 0;
    padding: 0;
    /*background-color: black;*/
    /*color: black;*/
}

body{
    background-color: black;
    display: flex;
    justify-content: center;
    padding-top: 100px;
    font-family: alegreya, sans-serif;
}

.hero{
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    justify-content: space-between;


}


.title{
    font-size: 40px;
}

.fleche{
    position: absolute;
    top: 21px;
    left: 21px;
    overflow: hidden;

    height: 45px;
    width: 57px;
    background-image: url("../img/fleche.svg");
    background-size: cover;
    background-color: transparent;
}

.card{
    position: relative; /* essentiel pour que .croix soit positionnée à l’intérieur */
    background-color: white;
    height: 479px;
    width: 551px;
    margin: 0;
    border-radius: 32px;
    padding: 73px;
    cursor: default;

}


.card-2{
    background-color: #E9DDE0;
    height: 100%;
    width: 100%;
    margin: 73px;
    cursor: default;

}

.logo{
    width: 21px;
    height: 19px;
    background-image: url("../img/ok.svg");
    background-size: cover;
    background-color: white;
    overflow: hidden;

}

.chois{
    display: flex;
    flex-direction: column;
}

.total{
    display: flex;
    align-items: flex-end

}

.explication{
    padding-left: 20px;
    padding-top: 20px;
    font-size: 18px;
    cursor: default;

}

.flex-card-prix{
    display: flex;
    justify-content: space-between;
}

.card-prix{
    height: 88px;
    background-color: black;
    color: white;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 45%;
}

.card-prix{
    border-radius: 8px;

    .prix{
        padding-bottom: 3px;
        font-weight: 700;
    }

    .date{
        color: rgba(255, 255, 255, 0.75);
    }
}

.card-prix-2{
    background-color: #E9DDE0;
}

.card-prix-2 .prix{
    color: black;
}

.card-prix-2 .date{
    color: rgba(0, 0, 0, 0.75);
}

.buton-yes{
    text-decoration: none;
    background-color: #FF2F6F;
    color: white;
    text-align: center;
    border-radius: 16px;
    padding: 19px 56px;
    font-size: 18px;
    font-weight: 700;
    box-shadow:
            inset 0 -6.69px 7px 0 #DC2960,
            0 15px 29px 0 rgba(51, 9, 22, 0.2);

}

.buton-yes:hover {
    transition: 0.5s;
    background: linear-gradient(180deg, rgba(167, 30, 79, 1) 0%, rgba(213, 39, 102, 1) 100%);
    box-shadow:
            inset 0 -4.89px 5px 0 #A01D4C,
            inset 0 5px 5px 0 #DC2869,
            0 15px 29px 0 rgba(51, 9, 22, 0.2);

}

@media (max-width: 425px) {
    body{
        padding: 10px;
    }
    .card{
        padding: 20px;
        padding-top: 73px;
    }
    .fleche{
        top: 10px;
        left: 10px;
    }
    .total{
        font-size: 18px;
        align-items: flex-start;

    }
    .explication{
        font-size: 16px;
        padding-left: 10px;
        padding-top: 0;
        background-color: transparent;
    }
    .card-prix {
        margin-right: 5px;
    }
    .card-prix-2 {
        margin-left: 5px;
    }
    .logo{
        width: 17px;
        height: 17px;
    }
}


