.body {
    background-image: url('./images/istockphoto-1047010100-612x612.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    min-width: 100%; 
    min-height: 100vh; 
}
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }

    100% {
        transform: scale(1);
    }
}
.bg-crimson{
    background-color: crimson!important;
}
.card{
    border: 2px solid #000 !important; 
    border-radius: 10px !important;
}
#text{
    color: aliceblue;
    size: 3rem;
}
#form{
    border: 2px solid #000; 
    border-radius: 10px;
    padding: 1rem; 
}
#type{
    
    border: 2px solid #000; 
    border-radius: 10px;
    padding: 0.5rem; 
    margin: 0.5rem;
    background-color: aliceblue;
}

#btnChoise{
    animation: pulse 2s infinite;
    color: whitesmoke;
    background-color: black;
}
#btnHero{
    animation: pulse 2s infinite;
    background-color:aliceblue;
    color:#000;
   
}
#btnFight{
    display: flex;
    justify-content: center;
    height: 50%;
    padding: 2rem;
    animation: pulse 2s infinite;
    background-color:aliceblue;
    color:#000;
}
#btnAccueil{
    animation: pulse 2s infinite;
    background-color:aliceblue;
    color:#000;
    display: flex;
    justify-content: center;
}
.card-body:hover{
    background-color: #000;
    color: aliceblue;
}

#btnChoise:hover{
    background-color:aliceblue;
    color:#000;
}
#btnHero:hover{
    color: black;
    background-color: crimson;
}
#btnAccueil:hover{
    color: black;
    background-color: crimson;
}
#btnFight:hover{
    color: black;
    background-color: crimson;
}
#type:hover{
    cursor: pointer;
}

