*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #dfd3d3;
}
main{
    padding: 20px;
}

main > h1{
    text-align: center;
    font-size: 4rem;
    margin-top: 5rem;
}


                    /* user entry section */
.user-entry{
    height: 50vh;
    display: flex; 
    justify-content: center;
    align-items: center;
    gap: 20px;
}

input, #play{
    font-size: 28px;
    padding: 8px 12px;
    border-radius: 4px;
}

#play{
    height: 5rem;
    width: 5rem;
    border: 2px solid green;
    color: white;
    background-color: green;
}
#play:hover{
    background-color: white;
    color: green;
    cursor: pointer;
}



                    /* categories section */
#categories-section{
    width: 100%;
}
#categories-section > h1{
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgb(164, 154, 154);
    padding-bottom: 12px;
}

#categories-section .category-item{
    border: none;
    font-size: 24px;
    padding: 8px 12px;
    width: 300px;
    height: 80px;
    margin: 0 0 12px 3.5rem;
    background-color: #edd6d6;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    border-radius: 4px;
}
#categories-section .category-item:hover{
    cursor: pointer;
    color: white;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}



                    /* question-options-area */
.question-options-area{
    height: 50vh;
    /* display: flex; */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
} 

.question-options-area > p{
    font-size: 4vh;
}
.question-options-area > p>i{
    color: purple;
    font-size: 6vh;
    border-bottom: 2px solid purple;
    font-weight: bold;
}

.question-options-area ul li{
    list-style-type: disc;
    font-size: 4vh;
    margin-top: 12px;
}
.question-options-area ul li:hover{
    cursor: pointer;
    border-bottom: 2px solid purple;
   
}


                        /* replay-quit section */
#replay-quit{
    text-align: center;
}

#replay-quit>h1{
    font-size: 3rem;
    margin: 2rem 0;
}

#replay-quit button{
    width: 17rem;
    height: 6rem;
    padding: 12px 12px;
    font-size: 4rem;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    border-radius: 4px;
}
#replay-quit button:hover{
    cursor: pointer;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

#replay-quit #replay{
    background-color: green;
    color: white;
    border: none;
}
#replay-quit #replay:hover{
    background-color: white;
    color: green;
    border: 2px dashed green;
}

#replay-quit #quit{
    background-color: red;
    color: white;
    border: none;
}
#replay-quit #quit:hover{
    background-color: white;
    color: red;
    border: 2px dashed red;
}




                /* score announcement */
#scores-announcement{
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2vh;
}

#scores-announcement h2{
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px #000000;
}

#scores-announcement h1{
    font-size: 5rem;
    margin-top: 2rem;
    color: blueviolet;
    text-shadow: 1px 1px 2px black, 0 0 25px blue, 0 0 5px darkblue;
    border-bottom: 2px dashed black;
}

.winner{
    color: green;
}
.looser{
    color: red;
}