/* ******************************
** HEADING
****************************** */
body, html {
    height: 100%;
    /* The image used */
    background-image: url("https://parade.com/.image/c_limit%2Ccs_srgb%2Cq_auto:good%2Cw_1381/MTkwNTgxMDA2ODgxNzkzMTQ5/sports-trivia-1-jpg.webp");
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  }
    /* Full height */
    /* height: 100%;
    background-position: center; 
    background-repeat: no-repeat;
    background-size: cover; */

h1 {
    text-align: center;
    color: mediumblue;
    font-size: 100px;
    font-family: cursive;
    font-weight: bold;
}

/* ******************************
**Question
****************************** */

#question {
    width: 65%;
    padding: 5px;
    border: 50px skyblue;
    background-color: red;
    color: black;
    font-size: 25px;
    margin: 10px auto;
    border-radius: 40px;
    text-align: center;
}

/* ******************************
** Answers
****************************** */

#answer {
    width: 50%;
    margin: 10px auto;
    color: red;
    background-color: cadetblue;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 50px;
}

#answer ul {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-around;
    list-style: none;
}

#answer ul li {
    width: 40%;
    height: 40px;
    background-color: wheat;
    padding-top: 15px;
    text-align: center;
    margin: 5px;
    font-weight: bolder;
    border-radius: 50px;
}

/* ******************************
** ScoreBoard
****************************** */

#scores {
    display: flex;
    width: 70%;
    background-color: greenyellow;
    justify-content: center;
    margin: 10px auto;
    border-radius: 40px;
}

#player1 {
    background-color: royalblue;
    width: 40%;
    margin: 5px;
    text-align: center;
    border-radius: 60px;
    font-size: large;
    font-family: fantasy;
}

#player2 {
    background-color: royalblue;
    width: 40%;
    margin: 5px;
    text-align: center;
    border-radius: 60px;
    font-size: large;
    font-family: fantasy;
}
