body{
    margin: 0;
    padding: 0;
    background-color:#11153a ;
    display: flex;
    align-items: center;
    justify-content: center;
}

#starth1{
    font: 2em sans-serif;
    background-color: blueviolet;
    color: white;
    padding: 10px;
}

.container{
    background-color:#11153a ;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100vh;
}

#inputBtn{
    display: none;
}

#high-scores{
    display: none;
    border: 3px solid white;
    width: 25em;
    height: 35em;
}

#hallinput{
    display: none;
}

.high{
    color: black;
    font-size: large;
    background-color: aliceblue;
    border-radius: 10px;
    border: 3px solid palevioletred;

}

#start-page{
    background-color:black ;
    border: solid yellow;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 40rem;
    height: 30rem;  
}

.quizbox{
    background-color:black ;
    border: solid blueviolet;
    border-radius: 10px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 40rem;
    height: 30rem;
}
/* .boxwrap{
    background-color:black ;
    border: solid blueviolet;
    border-radius: 10px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60rem;
    height: 30rem;
} */

.quizbox h1{
    color: pink;
}

button{
    border-radius: 20px;
    padding: 3px;
    border: 3px solid pink ;
    background: white;
    margin: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: medium;
    
}
button:hover:not([disabled]) {
    background-color: gray;
}

.correct {
    background-color: rgb(4, 139, 4);
}
.incorrect {
    background-color: rgb(197, 59, 59);

}
#answer-buttons{
    width: 60%;
    display: flex;
    flex-direction: column ;
    justify-content: center;

}

#next {
    display: none;
    background-color: rgb(19, 82, 136);
    width: 50%;
}
#next:hover{
    background-color: aliceblue;
}

.quizquestions{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.question-num{
    background-color: antiquewhite;
    padding: 5px;
    margin: 0;
}
#presentScore{
    margin: 0;
    background-color: aliceblue;
    width: 20px;
}

h2{
    background-color: antiquewhite;
    border-radius: 20px;
    padding: 5px;
    border: 3px solid yellow ;
    background: white;

}

#musictxt{
    color: black;
    border: 5px solid white;
    border-radius: 20px;
    margin: 0;
    background-color: aliceblue;
}

#musictxt:hover{
    background-color: lightblue;

}

.music{
    width: 10em;
    height: 3em;
    display: flex;
    flex-direction: column ;
    justify-content: center;
    align-items: center;
    margin: 5px;

}


/* Tablets and under */
@media (max-width:768px) {
    .container{
        background-color:#11153a ;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 100%;
        height: 100vh;
    }
    .quizbox{
        width: 18rem;
        height: 20rem;
        display: none;
        flex-direction: column ;
        justify-content: center;
    
    }
    .boxwrap{
        width: 18rem;
        height: 20rem;
        display: none;
        flex-direction: column ;
        justify-content: center;
    }

    #start-page{
        width: 18rem;
        height: 20rem;

    }

    #starth1{
        font: 2em sans-serif;
        background-color: blueviolet;
        color: white;
        padding: 10px;

    }
    button{
        padding: 3px;
        border: 3px solid pink ;
        margin: 3px;
        font-size: small;
    }
    h1{
        font-size: 15px;
    }

    h2{
        padding: 3px;
        border: 2px solid pink ;
        line-height: 1em;
    
    }
    .music{
        margin-top: 20px;
    }
    
    #musictxt{
        color: black;
        border: 5px solid white;
        border-radius: 20px;
        margin: 0;
        background-color: aliceblue;
    }
    
      
}
