/**
 * BACKGROUND DE LA PAGE
 * CENTRÉ ET EN COVER (COUVERTURE DE L'ENSEMBLE DE L'ESPACE)
 */
 body {
    background-image: url("assets/background.jpg");
    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.4) !important;
}
.navbar-nav {
    display: flex;
    flex-direction: row;
}
.fa-star,.fa-trophy,.fa-hourglass {
   color: #ffc107;
}
/**
 * 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;
    font-family: 'Baloo Chettan', cursive;
}

.answer {
    display: block;
    width: 90%;
    margin: 10px auto;
    padding: 10px;
    color : white;
    font-size: 25px;
    background-color: rgba(255, 193, 7) !important;
    border-color: #ffc107;
    font-family: 'Baloo Chettan', cursive;
}

.titre-question
 {
    color: white;
    font-family: 'Anton', sans-serif;
}

.navbar-item {
    color : white;
    font-family: 'Anton', sans-serif;
}

.white {
    color : white;
    font-family: 'Audiowide', cursive;
}

.navbar-brand {
    font-family: 'Baloo Chettan', cursive;
} 

.btn-warning {
    color : white;
    font-family: 'Baloo Chettan', cursive;
}

.white-link {
    font-size: 20px;
}

.modal-title {
    font-family: 'Baloo Chettan', cursive;
}

.col-6 {
    font-family: 'Fredoka One', cursive;
}

.col-4 {
    font-family: 'Audiowide', cursive;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    background-color: rgba(30, 30, 30, 0.4);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color :#ffc107;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
    color: #f1f1f1;
}

.sidenav .closebtn {
    position: absolute;
    top: 50px;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

#main {
    transition: margin-left .5s;
    padding: 16px;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 20px;}
  .sidenav a {font-size: 18px;}
}


