@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth; 
}

body{
    background-color: #DEDCDC;
}

header {
    background-color: #f0f0f0;
    width: 100%;
    /* position: fixed;
    z-index: 999; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 200px ;
}

.logo{
    text-decoration: none;
    color: #3a6cf4;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.8em;
}

.navigation a{
    color: #3a6cf4;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 500;
    padding-left: 30px;
}

.navigation a:hover{
    color: #601cfc;
}

#view{
    text-align: center;
    padding: 3% 10%;
    background-color: #FFFFFF;
    margin-left: 10%;
    margin-top: 25px;
    width: 75vw;
    /* height: 73vh; */
}

.user-choices{
    text-align: center;
    justify-content: center;
    /* padding: 15px 15px; */
    width: 50vw;
    /* height: 70vh; */
    font-size: 1.8em;
}
select{
    width: 80%;
    height: 2rem;
}
label{
    text-align: start;
}
#startBtn{
    width: 200px;
    height: 50px;
    background-color: #3a6cf4;
    border-radius: 15px;
    margin-top: 20px;
    font-size: .8em;
}

#view h3{
    color: #3a6cf4;
    font-size: 1.5em;
}


ul {
    margin-top: 20px;
    list-style: none;
    padding: 0;
    min-height: 150px;
}

li{
    background: #fff;
    border: 1px solid #ddd;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 8px;
    text-align: center;
    justify-content: center;
    font-size: 1.2em;
    font-weight: 700;
}
#nextBtn{
    margin-top: 10px;
    padding: 10px 30px;
    color: #fff;
    background-color: #3a6cf4;
    font-size: 1.1em;
    border-radius: 15px;
}

#startNewQuiz{
    text-decoration: none;
    margin-top: 10px;
    padding: 10px 30px;
    color: #fff;
    background-color: #3a6cf4;
    font-size: 1.1em;
    border-radius: 15px;
    
}

@media (max-width:1023px){
    header{
        padding: 12px 20px;
    }

    .navigation a{
        padding-left: 10px;
    }

    section{
        padding: 80px 20px;
        font-size: 1em;
    }

}

@media (max-width:641px){
    body{
        font-size: 12px;
    }

}

@media (max-width:300px){
    body{
        font-size: 10px;
    }
}