body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    background-color: rgb(0,80,130);
    overflow-y: hidden;
}

.background-gradient {
background: rgb(0,80,130);
background: -moz-linear-gradient(0deg, rgba(0,80,130,1) 0%, rgba(0,0,0,1) 100%);
background: -webkit-linear-gradient(0deg, rgba(0,80,130,1) 0%, rgba(0,0,0,1) 100%);
background: linear-gradient(0deg, rgba(0,80,130,1) 0%, rgba(0,0,0,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#005082",endColorstr="#000000",GradientType=1);
}

/* *{
    margin:2px;
    padding-top:1vh;
  } */

.quiz-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 90%;
    margin: auto; /* Center the container horizontally */
    position: relative;
    display: none;
}

.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
    text-align: center;
    margin: auto; /* Center the container horizontally */
    height: 100%;
    overflow-y: scroll;

}

.question {
    display: none;
    position: relative;
    top: 0;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    margin-bottom: 10%;
    
}

.options {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 75%;
    margin: auto; /* Center the container horizontally */
    
}

.options button {
    font-size: 14px;
    margin: 8px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background-color: #fff20f;
    color: #303c42;
    padding: 5px;
    width: 200px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.message {
    display: none;
    font-size: 18px;
    background-color: #fff;
    padding: 10px;
    position: absolute;
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Centering trick */
    width: 80%;
    background-color: #303c42;
    padding: 10%;
}

.incorrect-message {
    display: none;
    font-size: 14px;
    background-color:red;
    color: white;
    padding: 10px;
    position: absolute;
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Centering trick */
    width: 70%;
    padding: 5%;
    z-index: 5;
    border-radius: 15px;
    
}

.incorrect-message>img {
    display: block;
    position: relative;
    left: 50%; /* Center horizontally */
    transform: translate(-50%, 0%); /* Centering trick */
    width: 60%;
    padding: 10px;
    z-index: 5;
    
}


.title-header {
    width: 40%;
    margin: 0;
    padding: 0;
}

.question-images{
    width: 30%;
    margin: 0;
    padding: 0;
}

.form-images{
    width: 40%;
    margin: 0;
    padding: 0;
}

.commodity-info{
    font-size: 14px;
    margin-top:5px;
    padding:0;
}

.intro-info{
    font-size: 13px;
    margin-top:5px;
    padding:0;
}


.yellow-zest{
    color: #fff20f;
}

.quiz-info{
    width: 80%;
    position: relative;
    top: 10%;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    margin-top:5px;

}

.quiz-form{
    width: 80%;
    position: relative;
    top: 2%;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;

}

.hidden{
    display: none;
    opacity: 0;
}

.yellow-button{
    font-size: 14px;
    margin: 8px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background-color: #fff20f;
    color: #303c42;
    padding: 5px;
    width: 200px;
    height: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;

}

.disabledBTN {
    opacity: 0.5;
    cursor: not-allowed;
}

.text-yellow{

    color: #fff20f;
}



.inputField{

    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.win-message{
    display: none;
    position: absolute;
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Centering trick */
    z-index: 5;
    background-color: #061427;
    padding: 15%;
}

.win-message>img{
    width: 70%;
    max-height: 200px;
}

/* Media query for small screens (e.g., mobile devices) */
@media only screen and (max-width: 600px) {
    #quiz-container {
        width: 90%;
    }

    .options button {
        width: 100%;
    }
}