body{
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;    
    height: 100vh;
    width: 100%;
}


.backgroundImg{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;  /* Makes sure the video stays behind content */
    overflow: hidden;
    object-fit: cover; /* Makes the video cover the whole screen */
    object-position: center;
}

.text-danger {color: #f44336;}
.text-success {color: #4CAF50;}
.text-warning {color: #cbb943;}


/* ------------------------------------------------ TEST STYLING ------------------------------------------------ */

.container{
    background-color: hsla(0, 0%, 0%, 0.8);
    min-height: 100%;
    min-width: 100%;
    text-align: center;
    justify-content: center;
    align-content: center;
    justify-items: center;
    z-index: 1;
    color: white;

}

.answer-btn{
    display: block;
    border-radius: 10px;
    min-width: 300px;
    border: none;
    width: auto;
    border: none;
    padding: 10px;
    margin: 10px;
}

.answer-btn:hover{
   cursor: pointer;
    background-color: hsl(0, 0%, 75%);
    
}


.quiz-container{
    display: block;
    text-align: center;    
    justify-items: center;
    max-width: 100%;
    margin-right: 20px;
    margin-left: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

.answer-row{
    display: grid;
}

.hidden-row{
    margin-top: 20px;
    display: flex;
    justify-content: center; /* Adjusts spacing */
    align-items: center; /* Aligns vertically */
    width: 40%;
}

.hidden-row button{
    z-index: 1;
    width: auto;
    border-radius: 10px;
    min-width: 100px;
    border: none;
    padding: 10px;
    margin: 10px;
    background-color: #4CAF50;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
}

.result-modal{
    display: flex;
    flex-direction: column;
    position: fixed;
    text-align: center;
    justify-content: center;
    align-content: center;
    justify-items: center;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0, 0, 0, 0.4);
    
}

.feedbackBtn{
    padding: 10px 60px;
    border: none;
    border-radius: 15px;
    font-size: large;    
}

/*  animation: zoomIn 1s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-direction: alternate;;
*/

.modal-glass-frosted{
    display: fixed;
    background-color: hsla(0, 0%, 0%, 0.9);
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    margin: auto;
    text-align: center;
}


.modal-buttons button{
    width: auto;
    border-radius: 10px;
    min-width: 100px;
    border: none;
    padding: 10px;
    margin: 10px;
    background-color: #4CAF50;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
}

#result-modal-homeBtn{
    background-color: hsl(4, 90%, 58%);
}





@keyframes zoomIn {
    from {
        transform: scale(0.95);
    }
    to {
        transform: scale(1.05);
    }
}



.solution-modal-glass{
    display: flex;
    flex-direction: column;
    height: auto;
    width: auto;
    margin: 20px;
    min-width: 250px;
    max-width: 500px;
    min-height: 250px;
    background-color: rgba(0, 0, 0, 0.9);
    border-radius: 10px;

    
}

#solutionText{
    min-height: 150px;
    margin-left: 20px;
    margin-right: 20px;
    
}

.solution-modal-buttons button{
    width: auto;
    border-radius: 10px;
    min-width: 100px;
    border: none;
    padding: 10px;
    margin: 10px;
    background-color: #4CAF50;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
   
}

#question{
    max-height: 700px;
    
}


.x{
    position: absolute;
    top: 5px;
    right: 7px;    
    margin: 0;
    color: hsla(0, 100%, 50%, 0.75);
    cursor: pointer;
}


.question-quantity{  
    position: relative;
    display: block;
    height: auto;
    width: auto;
    margin: 20px;
    min-width: 250px;
    max-width: 500px;
    min-height: 250px;
    background-color: rgba(0, 0, 0, 0.9);
    border-radius: 10px;
    text-align: center;
    padding: 10px;

}

.quantity-modal{
    position: fixed;
    text-align: center;
    justify-content: center;
    align-content: center;
    justify-items: center;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0, 0, 0, 0.4);
}

.question-quantity button {
    display: block;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: auto;
    margin-right: auto;
    border: none;
    padding: 10px 100px;
    border-radius: 10px;
    cursor: pointer;
    
}

.question-quantity button:hover{
    background-color: #f7f7f7;
    color: #f29359;
    border: 1px solid #f29359;
    cursor: pointer;
    animation: zoomIn 0.5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-direction: alternate;
}



.x2{
    position: absolute;
    top: 5px;
    right: 5px;
    margin: 0;
    color: hsla(0, 100%, 50%, 0.75);
    cursor: pointer;
}