

/* Style de l'étoile */
.star {
    position: relative;
    color: white;
    font-size: 24px;
    display: inline-block;
    width: 0;
    height: 0;
    border-right: 100px solid transparent;
    border-bottom: 70px solid yellow;
    border-left: 100px solid transparent;
    transform: rotate(35deg);
    margin: 50px;
}

.star:before,
.star:after {
    content: '';
    position: absolute;
    top: 0;
    left: -100px;
    width: 0;
    height: 0;
    border-right: 100px solid transparent;
    border-bottom: 70px solid yellow;
    border-left: 100px solid transparent;
    transform: rotate(-70deg);
}

.star:after {
    transform: rotate(70deg);
}

/* Animation de clignotement */
@keyframes clignoter {
    0% {
        color: white;
    }

    50% {
        color: red;
    }

    100% {
        color: white;
    }
}

/* Style du texte clignotant */
.blink {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: clignoter 1s infinite;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}
.bouton {
    font-style: italic;
}


.bricebatstyle {
    background-color: #f7dc6f ; 
    padding: 20px; 
    border-radius: 10px;
}

.bgbricebatstyle {
    background-color: #f7dc6f ; 
}