/**
 * FILE: gaming.css
 * GOAL: To provide consistent styling for the game
 */

.game_subtitle {
    font-family: "Arial, Helvetica, sans-serif";
    font-size: 20px;
    text-align: center;
    font-style: italic;
}

.game_setup {
    font-size: 40px;;
    text-align: left;
}

.game_instruction {
    font-size: 24px;
    text-align: left;
    font-style: bold;
}

.game_option {
    font-size: 24px;
    text-align: left;
    font-style: bold;
}

.game_explanation {
    font-size: 24px;
    text-align: left;
    font-style: bold;
}

.game_player_up {
    font-size: 24px;
    text-align: left;
    font-style: bold;
    font-color: blue;
}

.game_question {
    font-size: 24px;
    text-align: left;
    font-style: bold;
}

.game_choice {
    font-size: 24px;
    text-align: left;
    font-style: bold;
}

.game_bible_verse {
    font-size: 24px;
    text-align: left;
    font-style: normal;
}

.game_question_count {
    font-size: 24px;
    text-align: left;
    font-style: bold;
}

.player_counter {
    width: 64px !important;
}

.game_player_score {
    font-size: 24px;
    text-align: left;
    font-style: bold;
}

.hide_rest {
    display: none;
}

.fadeInItem {
    visibility: visible;
    opacity: 1;
    transition: opacity 2s, visibility 0s 2s linear;
}

.fadeOutItem {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 2s, opacity 2s linear;
}

.hidden_instruction {
    visibility: hidden;
    opacity: 0;
}

.difficult {
    font-family: "Arial, Helvetica, sans-serif";
    font-size: 20px;
    text-align: left;
}

.difficulty_explanation {
    font-style: italic;
}

.italicized {
    font-style: italic;
}

.authorship {
    font-family: "Arial, Helvetica, sans-serif";
    font-size: 20px;
    color: black;
    text-align: left;
}

.citation {
    font-family: "Courier, Lucida Console, sans-serif";
    font-size: 20px;
    padding-left: 1.5em;
    text-indent:-1.5em;
}

.float_at_bottom {
    margin-bottom: 100px;
}
