/*
Name: CJC
Date: 2025/03/12
Purpose: Stylesheet for Minecraft Trivia
*/

#container {
    width: 800px;
    margin: 0 auto;
    border: green 1px solid;
    padding: 5px;
    margin-top: 10px;
}

/* Starting with many elements not displayed */

#question2, #question3, #question4, #question5, #question6, #question7, #userScore, #submit, #reset {
    display: none;
}

/* To mantain the position of the other buttons previous is set to hidden instead of display none */

#previous {
    visibility: hidden;
}

#warning {
    color: red;
    display: none;
}

#userScore p {
    font-weight: bold;
    font-size: xxx-large;
}

h1 {
    font-weight: bolder;
    font-size: 60px;
    background-image: linear-gradient(green, saddlebrown);
    color: transparent;
    background-clip: text;
}