﻿
.mainContainer {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    text-align: center; /* Optional: center any inline content too */
    background-color: #E1D3BB; /* Set background color to E1D3BB */
}
.BackgroundImageFrame {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100vw;
    height: 100dvh;
    max-width: 100%;
    z-index: 1;
}


.NavButtons {
    position: absolute;
    top: 1px;
    right: 12px;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    width: 130px;
}


.NavScoreTracker {
    position: absolute;
    top: 5px;
    right: 80px;
    width: 50px;
    z-index:1;
}
.NavInfoButton {
    position: absolute;
    top: 5px;
    right: 20px;
    width: 50px;
    z-index: 1;
}




.question-box {
    display: flex;
    width: 70%;
    height: 80%;
    flex-direction: column;
    justify-content: space-around;
    font-family: Helvetica;
    max-width: 500px;
}

.reveal-container {
    position: relative;
    height: 12%;
}

.RevealAnswerButton {
    z-index: 2;
}

.RevealAnswerButton,
.Answerimage-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    cursor: pointer;

}

.QuestionTextContainer {
    display: flex;
    height: 40%;
    flex-direction: column;
    justify-content: space-around;
    font-size: min(4vw, 26px);
    font-family: Helvetica;
    margin-top: 28px;
}
.AnswerOptionsContainer {
    height: 20%;
    font-size: min(4vw, 26px);
    font-family: Helvetica;
}

.Answerimage-base {
    display: block;
    width: 100%;
    height: auto;
}

.Answerimage-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: black;
    text-align: center;
    pointer-events: none;
    font-size: min(4vw, 26px);
    font-family: Helvetica;
    width: 100%;
}
.BonusQuestionNextButtonContainer {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.BonusQuestionNextButton {
    z-index: 2;
    height:65%;
}
.BonusQuestionBackButton {
    z-index: 2;
    height: 65%;
}

.bonusquestiontext {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    z-index: 3;
   
}