@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

* {
    padding: 0;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}
.front{
    position: relative;
    top: 45px;
}
.front1{
    position: relative;
    top: -20px;
}
.start-page {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #fff;
    width: 90%;
    max-width: 600px;
    margin: 100px auto 0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    height: 475px;
    max-width: 600px;
    margin: auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.start-page h1 {
    font-size: 25px;
    color: #001e4d;
    font-weight: 600;
    /* border-bottom: 1px solid #333; */
    padding-bottom: 0px;
}

.start-page p {
    color: #001e4d;
    font-size: 16px;
    margin-bottom: 20px;
}

.start-btn {
    background: #001e4d;
    color: #fff;
    font-weight: 500;
    width: 150px;
    border: 0;
    padding: 10px;
    margin: 20px auto 0;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.start-btn:hover {
    background: #fff;
    color: #001e4d;
}

body {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin: 16vh 0; */
    overflow: hidden;
    background-image: url(../../assets/images/Ex15.jpg);
    background-size: 100% 100%;
    height: 100vh;
    background-repeat: no-repeat;
}



.app {
    /* background: #ffeeee; */
    width: 90%;
    max-width: 600px;
    margin: 5px auto 0;
    border-radius: 10px;
    padding: 0px 30px 0 30px;
    /* box-shadow: 4px 4px 8px 2px rgba(0, 0, 0, 0.171); */

    
}


.app h1 {
    font-size: 30px;
    color: #001e4d;
    font-weight: 600;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.quiz {
    padding: 15px 20px;
    border-radius: 7px;
    border: 0.2px solid hsl(0deg 0% 30% / 27%);
    background-image: linear-gradient(180deg, #fff8f1 0%, #ffffff 100%);
    border-top: 5px solid #091291;
}

.quiz h2 {
    font-size: 22px;
    color: #001e4d;
    font-weight: 600;
    margin-bottom: 30px;
}
h2:first-child{
    display: none;
}

.btn {
    /* background: #fff; */
    color: #111111;
    font-weight: 600;
    width: 100%;
    border: 1px solid #222;
    padding: 10px;
    margin: 10px 0;
    text-align: left;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 18px;
    margin-top: 15px;
}

.btn:hover:not([disabled]) {
    background: #059430;
    color: #fff;

}

.btn:disabled {
    cursor: no-drop;
}

#next-btn {
    background: #001e4d;
    color: #fff;
    font-weight: 500;
    width: 150px;
    border: 0;
    padding: 10px;
    margin: 20px auto 0;
    border-radius: 4px;
    cursor: pointer;
    display: none;

}


.correct {
    background: #9aeabc;
}

.incorrect {
    background: #ff9393;
}

#question img {
    display: block;
    /* width: 260px; */
    height: 250px;
}

#question {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}
.aud_btn:focus-visible{
    border: none !important;
    cursor: pointer;
}
.close-btn{cursor:pointer;}

#answer-buttons {
        display: flex;
        justify-content: space-between;
        margin: 0 2px;
    }

@media (max-width:799px) {
   
 #answer-buttons {
    margin: 0 2px;
} 
#question{
   text-align: center;
}  
}