.hero{
    display: flex;
    justify-content: center;
    height: 100%;
    width: 100%;
    margin-top: 100px;
    font-family: alegreya, sans-serif;

}

.hero-question h1{
    color: black;
    text-align: center;
    background-color: white;
    cursor: default;
}

.hero-buton{
    display: flex;
    justify-content: center;
    margin-top: 20px;
    background-color: white;
}

.hero-block{
    background-color: white;
    height: 552px;
    width: 624px;
    margin: 0px;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative; /* essentiel pour que .croix soit positionnée à l’intérieur */


}

.buton-yes{
    text-decoration: none;
    display: block;
    margin: 20px 10px;
    background-color: #FF2F6F;
    color: white;
    border: none;
    font-size: 18px;
    font-weight: 700;
    padding: 19px 56px;
    border-radius: 16px;
    box-shadow:
            inset 0px -6.69px 6.69px 0px #DC2960,
            0px 14.53px 29.07px 0px rgba(51, 9, 22, 0.2);


}

.non-button {
    text-decoration: none;
    display: block;
    margin: 20px 10px;
    border: none;
    font-size: 18px;
    font-weight: 700;
    padding: 19px 56px;
    border-radius: 16px;
    color: white;
    background-color: #3E000C;
    box-shadow:
            inset 0px -6.98px 6.98px 0px #35000A,
            inset 0px 6.98px 6.98px 0px #45000D,
            0px 14.53px 29.07px 0px 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 0px -4.89px 4.89px 0px #A01D4C,
            inset 0px 4.89px 4.89px 0px #DC2869,
            0px 14.53px 29.07px 0px rgba(51, 9, 22, 0.2);

}
