/* ***********************************
** HEADING
*********************************** */

body {
    background-color: green;
}

h1 {
    text-align: center;
    color: greenyellow;
}

/* ***********************************
** Question
*********************************** */

#question {
    width: 70%;
    padding: 30px;
    /* border: 3px solid blue; */
    background-color: rgb(14, 185, 14);
    color: white;
    font-size: 28px;
    margin: 10px auto;
}

/* ***********************************
** Answers
*********************************** */

#answer{
    width: 50%;
    margin: 10px auto;
    color: white;
    background-color: greenyellow;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

#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: black;
    padding-top: 15px;
    text-align: center;
    margin: 5px;
    font-weight: bolder;
}

/* ***********************************
** ScoreBoard
*********************************** */

#scores {
    display: flex;
    width: 70%;
    background-color: darkslategray;
    justify-content: center;
    margin: 10px auto;
}

#player1, #player2 {
    width: 40%;
    background-color: gray;
    margin: 5px;
    text-align: center;
}

