body{
    transition:.5s;
    background-image: url("../img/dsc_5210.jpg");
    background-size: cover;        /* L'image couvre tout l'écran */
    background-position: center;   /* Centrée */
    background-repeat: no-repeat;  /* Pas de répétition */
    background-attachment: fixed;  /* L'image reste fixe lors du défilement */
}
.alarm-mode{

    background:#8B0000 !important;
    animation:flash .8s infinite;

}

@keyframes flash{

0%{background:#8B0000;}
50%{background:#ff0000;}
100%{background:#8B0000;}

}

.card{
    transition:.5s;
}