/**
 * BACKGROUND DE LA PAGE
 * CENTRÉ ET EN COVER (COUVERTURE DE L'ENSEMBLE DE L'ESPACE)
 */
body {
    background: #ffffff url("assets/fond_quizz.png");
    background-repeat: no-repeat;
    background-size: cover;
    height: 100% !important;
}

/**
 * CHANGEMENT DE L'OPACITÉ DE LA COULEUR DE FOND DE LA BARRE DE NAVIGATION
 */
.navbar {
    background-color: rgba(30, 30, 30, 0) !important;
}

/**
 * HAUTEUR À 100% POUR LE CONTAINER PRINCIPAL ET LE DOCUMENT HTML
 * DÉSACTIVATION DES BARRES DE SCROLL
 */

html, .height-100 {
    height: 100% !important;
    overflow: hidden;
}

/**
 * LIEN DU BAS DE PAGE
 */
a.white-link, a.white-link:visited {
    color: #ffffff;
}
a.white-link:hover {
    color: #dddddd;
}
a.white-link:active {
    color: #ffff00;
}

/**
 * CAROUSEL
 */
.questionCarousel {
    width: 100%;
    height: 300px;
    margin: auto 50 auto 50;
}

.question-card {
    text-align: center;
}

.texte-question {
    color: white;
    text-shadow: 0px 0px 5px black;
    font-size: 1.5em;
}

.answer {
    display: block;
    width: 90%;
    margin: 10px auto;
    padding: 10px;
    background-color: #fefefe;
    border-color: #fefefe;
}
.sprite-center{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.sprite-correct{
    position: relative;
    z-index: 9999;
    color:#ffc107;
    font-size: 150px;
    display: block;
    animation: move 1s alternate ease-in-out;
}



@keyframes move{
    0%{
        transform: scale(1) rotate(25deg)
    }
    15%{
        transform: scale(0.90) rotate(-40deg)
    }
    25%{
        transform: scale(0.80) rotate(20deg)
    }
    50%{
        transform: scale(1.2) rotate(-20deg)
    }
    75%{
        transform: scale(0.80) rotate(10deg)
    }
    100%{
        transform: scale(1) rotate(-10deg)
    }
}

.scoreboard-screen{
    position: absolute;
    z-index: 999998;
    background-color: #ffffff;
    width: 100%;
    height: 100%;
    top: 100%;
    left: 100%;
    border-radius: 400% 0 0 0;
    transition: border-radius 0.50s ease-in-out, top 0.40s ease-in-out, left 0.40s ease-in-out;
}

.scoreboard-screen.active{
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0%;
    border-radius: 0% 0 0 0;
}



.start-screen{
    color: #333 !important;
    width: 100%;
    height: 100%;
    background-color:  #f2f2f2;
}

.rmb{
    margin-bottom: 2px !important;
}