/* Reset CSS  */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: 0.5 all;
}

body {
    overflow: hidden;
}

.intro {
    min-height: 100vh;
    font-family: Georgia, 'Times New Roman', Times, serif;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: radial-gradient(#000000cc, #00000062),
        url(./Images/start-bg.jpg);
    background-size: cover;
    background-position: center;
    color: #ffffff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    text-shadow: #b4efb8 5px 3px 11px;
    transition: 0.5s all;
}

#start-Btn {
    background: linear-gradient(135deg, #e2d6d6, #0a4b02bd);
    color: #011b05;
    font-family: Impact;
    font-size: 22px;
    border: none;
    border-radius: 75px;
    letter-spacing: 2px;
    padding: 20px 35px;
    margin-bottom: 50px;
    box-shadow: 0px 0px 20px 3px #21e03a;
    cursor: pointer;
}

.intro-box {
    background-color: #0d220165;
    padding: 30px 35px;
    border-radius: 50px;
    line-height: 90px;
    box-shadow: 0px 0px 120px 40px #0d2201;
    backdrop-filter: blur(3px);
}

.quiz-box {
    width: 400px;
    height: 500px;
    font-family: sans-serif;
    /* color: #ffff; */
    background-color: rgba(150, 129, 129, 0.199);
    text-align: center;
    Border-radius: 16px;
    background-size: cover;
    background-position: center;
    padding: 30px;
    background-image: url(./Images/quiz-box.jpg);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
    transition: 0.5s all;
    z-index: 1;
}

#Ques {
    color: #ffff;
}

main {
    background-image: url(./Images/quiz-bg.jpg);
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s all;
}

#result {
    height: 100vh;
    width: 100vw;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    background-image: radial-gradient(#000000cc, #00000062),
        url(./Images/start-bg.jpg);
    background-size: cover;
    background-position: center;
    text-align: center;
}

main,
#result {
    display: none;
}

button {
    padding: 10px 20px;
    border: none;
    background: #667eea;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    background: #5563c1;
}

.quiz-box h2 {
    margin-bottom: 15px;
}

ul {
    list-style: none;
}

ul li {
    background: #f4f4f425;
    backdrop-filter: blur(10px);
    color: white;
    margin: 8px 0;
    padding: 15px 10px;
    border-radius: 6px;
    text-align: left;
    cursor: pointer;
}

ul li input {
    margin-right: 10px;
    color: #011b05;
}

.btns {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}


#modal {
    border: 2px solid #ffff;
}

#result h2 {
    margin-bottom: 10px;
}