@import url('https://fonts.googleapis.com/css2?family=Nova+Square&display=swap');


body {
    background-color:  #6AD9D9;
}

h1{
    font-size: 3rem;
    margin-bottom: 3rem;
}

#finalScore{
    margin-top: 10%;
}

h2{
    font-size: 2.5rem;
    margin: 3rem;
}

#quiz_instructions{
    text-align: center;
}

.content_container{
    display: flex;
    justify-content: space-evenly;
    text-align: center;
    flex-direction: column;
    border-radius: 15px;
    padding: 3% 3%;
    height: 80%;
    background-color: #d6d6d6;
    box-shadow: 0 9px #999;
}

.container{
    display:flex;
    justify-content: center;
    align-items: center;
    font-family: 'Nova Square', cursive;
}

footer{
    z-index: 1;
    bottom: 0;
    width: 100%;
    height: 120px;
    background-color: #e7e7e7;
    border: 1px solid black;
    color: black;
    padding: 2% 2%;
}

.flex-column{
    display:flex;
    flex-direction: column;
}

.flex-center{
    justify-content: center;
    align-items: center;
}

.justify-center{
    justify-content: center;;
}

.text-center{
    text-align: center;
}

.hidden{
    display:none;
}

.btn{
    font-size: 2rem;
    padding: 2rem 0;
    width: 30rem;
    text-align: center;
    margin-bottom: 1rem;
    text-decoration: none;
    color: rgb(28,26,26);
    background: linear-gradient(90deg, rgb(18,92, 255) 0%, rgb(0,10,255) 100%);
    border-radius: 4px;
}

.btn:hover{
    cursor: pointer;
    box-shadow: 0 0.4rem 1.4rem 0 rgba(8, 114, 244, 0.6);
    transition: transform 150ms;
    transform: scale(1.03);
}

.btn[disabled]:hover{
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

#highscore-btn{
    background: linear-gradient(90deg, rgb(255,247, 9) 0%, rgb(240,221,6) 100%);
}

#highscore-btn:hover{
    box-shadow: 0 0.4rem 1.4rem 0 rgba(255, 255,0,0.5)
}

.fa-crown{
    font-size: 2.5rem;
    margin-left: 1rem;
}


/* End page css here*/

.end-form-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 30rem;;
}

input{
    margin-bottom: 1rem;
    width: 20rem;
    padding: 1.5rem;
    font-size: 1.8rem;
    border: none;
    box-shadow: 0 0.1rem 1.4rem 0 rgba(86,185,235,0.5);
}

input::placeholder{
    color: #aaa;
}

#username{
    margin-bottom: 3rem;
    width: 100%;
    outline: none;
}

#end-text{
    font-size: 2.4rem;
    color: #fff;
    text-align: center;
}

#saveScoreBtn{
    border:none;
}

.fa-home{
    margin-left: 1rem;
    font-size: 2rem;
    color: rgb(28,26,26)
}


/* Responsive */
@media screen and (max-width: 800px) {
    #quiz-instructions{
        width: 100%;
        font-size: 20px;
    }

    .btn{
        width: 100%;
        font-size: 20px;
    }

    .fa-crown{
        font-size: 20px;
    }

    .fa-home{
        font-size: 20px;
    }
}

