*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html,body{
    height: 100%;
    width: 100%;
    background-color: #0C1318;
    font-family:exo, sans-serif;
}

main{
    height:auto;
    width: 100%;
    overflow-x: hidden;
}

#qpage1{
    height:fit-content;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content:start;
    flex-direction: column;
    padding: 2% 5%;
    margin-top: 10vh;
    gap: 2vh;
}

#qpage1 h1{
    color:#00bcd4;
    font-size:12vh;
    text-align: center;
    text-shadow: #2c5364 0px 0px 10px, #2c5364 0px 0px 20px, #2c5364 0px 0px 30px;
    font-family: orbitron, sans-serif;
}
.qpage1-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    text-align: center;
    height: fit-content;
    width:60vw;
    border: #00bcd4 2px solid;
    padding: 4%;
    border-radius: 50px;

}
.qpage1-text {
    color:wheat;
    font-size: 3vh;
    margin-bottom: 2vh;
}
.qpage1-button {
    margin-top: 2vh;
    background-color: #00bcd4;
    padding:2% 6%;
    border-radius: 50px;
    color: #1b2735;
    font-size: 3vh;
}
.qpage1-button a {
    color: #1b2735;
    font-weight: bold;
}
#quize-box{
    height:fit-content;
    width: 80vw;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    padding: 2% 5%;
    border: 4px solid #00bcd4;
    border-radius: 50px;
    font-family: rajdhani, sans-serif;
}
#quize-box form{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.question{
    height: fit-content;
    width: 100%;
    display: flex;
    align-items:start;
    justify-content: center;
    flex-direction: column;
    padding: 2% 5%;
}
.question label{
    color: wheat;
    font-size: 4vh;
    margin-bottom: 1vh;
    font-family: rajdhani, sans-serif;
}
label:has(input[type="radio"]) {
    height: 2vh;
    width: fit-content;
    font-size: 3vh;
    color:#00bcd4;
}
#result{
    height: fit-content;
    width: 80vw;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2% 5%;
    border: 4px solid #00bcd4;
    border-radius: 50px;
    color:#00bcd4;
    font-size: 3vh;
    display: none;
    font-family: exo, sans-serif;

}
#quize-box input[type="submit"]{
    background-color: #00bcd4;
    color: #1b2735;
    padding: 1% 2%;
    border-radius: 50px;
    font-size: 2vh;
    margin-top: 2vh;
    cursor: pointer;
}

@media only screen and (max-width: 1200px) {
    #qpage1 h1{
        font-size: 4vh;
    }
    .qpage1-text{
        font-size: 2vh;
    }
    .qpage1-button{
        padding: 2% 4%;
        font-size: 2vh;
    }
    #quize-box{
        width: 90vw;
        border-radius: 20px;
    }
    #result{
        width: 90vw;
        font-size: 2vh;
    }
    .question label{
        font-size: 2.5vh;
    }
    .question label:has(input[type="radio"]) {
        font-size: 2vh;
    }
    #qpage1 h1{
        text-shadow: #2c5364 0px 0px 5px, #2c5364 0px 0px 10px, #2c5364 0px 0px 15px;
    }
    .qpage1-content {
        width: 80vw;
    }
    .qpage1-text {
        font-size: 2vh;
    }
    .qpage1-button {
        padding: 2% 4%;
        font-size: 2vh;
    }
    #quize-box form {
        width: 90%;
    }
    #quize-box {
        padding: 2% 3%;
    }
    #result {
        padding: 2% 3%;
        font-size: 2vh;
    }
    .question {
        padding: 2% 3%;
    }
    .question label {
        font-size: 2.5vh;
    }
    label:has(input[type="radio"]) {
        font-size: 2vh;
    }
    #quize-box {
        border: 2px solid #00bcd4;
    }
    #result {
        border: 2px solid #00bcd4;
    }

}