body{
    margin: 0;
    padding: 0 2rem 2rem;
    font-family: "Space Mono", monospace;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    color: #00A8E8;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: url(./img/game_background.svg);
    background-repeat: no-repeat; /* Prevents image repetition */
    background-size: cover; /* Covers the entire background */
    background-position: center center; /* Centers the image */
    /*width: 100vw; */
    height: 100vh;
}

.heading{
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 5px;
}

.description{
    font-size: 24px;
    margin-top: 5px;
    font-weight: 500;
    color: #3C6E71;
}

#output_section{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10vw;
}

.selected_option{
    height: 31vh;
    width: 17vw;
}

.question_img{
    height: 15vh;
}

.left_sec p,
.right_sec p{
    margin: 10px 0;
}

.score_card{
    margin-top: -2.5rem;
}

.userScore, 
#compScore{
    color: #3C6E71;
}

.score{
    border: 1px solid #00A8E8;
    border-radius: 0.3rem;
    background-color: #F4F8FC;
    padding: 0.25rem 0;
}

.mid_sec{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mid_sec p{
    margin: 6px 0;
}

#final_result_section{
    display: none;
}

h1{
    margin: 0.5rem 0;
}

#option_section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;   
    opacity: 90%;
}

.options{
    display: flex;
    justify-content: center;
    align-items: center;    
}

.options_button{
    height: 28vh;
    width: 15vw;
}

.options_button:hover{
    transform: translateY(-5px);
}

#option_section p{
    color: #3C6E71;
    background-color: #F4F8FC;
    padding: 0.5rem 2rem;
    border-radius: 20rem;
    border: solid #00A8E8;
    margin-top: -1.4rem;
}

#play_again_btn{
    padding: 0.5rem 2rem;
    border-radius: 20rem;
    font-weight: 400;
    background-color: #00A8E8; 
    color: #F4F8FC;
    border: 0;
    cursor: pointer;
    box-shadow: 0 0.4rem #999;
}

#play_again_btn:hover {
  background-color: #0274a1;
}

#play_again_btn:active {
  background-color: #0274a1;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}

.round{
    color: #3C6E71;
    margin-bottom: 0;
}

#user_result{
    color: #8AC926;
}

@media (max-width: 1000px){
    body{
        height: 100vh;
    }

    .options_button,
    .selected_option{
        height: 16vh;
        width: 30vw;
    }

    .question_img{
        height: 6vh;
    }

}