*, *::before, *::after {
    box-sizing:border-box;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

nav{
    padding: 20px;
    font-size: 20px;
}

:root{
    --hue-neutral: 200;
    --hue-wrong:0;
    --hue-correct:145;
}

body {
    --hue: var(--hue-neutral);
    background-color: hsl(var(--hue), 100%, 20%);

}

.container{
    width: 50%;
    margin-left: 260px;
}

h1 {
    text-align: center;
    background-color: orange;
    padding: 20px;
    box-shadow: 0 0 10px 2px;
}

p, h3 {
    background-color: orange;
    padding: 20px;
    box-shadow: 0 0 10px 2px;   
}

#question{
    font-size: 20px;
}

#question-container{
    background-color: white;
    padding: 10px;
    box-shadow: 0 0 10px 2px;
}

.btn-grid {
    display: grid;
    gap: 10px;
    margin: 20px 0;
}

.btn{
    --hue: var(--hue-neutral);
    border: 1px solid hsl(var(--hue), 100%, 30%);
    background-color: hsl(var(--hue), 100%, 50%);
    border-radius: 10px;
    padding: 5px 10px;
    color: white;
    outline: none;
    font-size: 20px;
    
}

#start-btn{
    margin-bottom: 14px;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 10px 20px;
}

.btn:hover {
    border-color: black;
}

.btn.correct {
    --hue: var(--hue-correct);
    color: black;
}

.btn.wrong {
    --hue: var(--hue-wrong);
}

.finish-btn, .next-btn{
    font-size: 1.5rem;
    font-weight: bold;
    padding: 10px 20px; 
    margin-top: 10px;  
}

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

.hide{
    display:none
} 

#timer-number{
    color: #C70039;
}

#lsOutput{
    background-color: white;
    width: 33%;
    text-align: center;
    font-size: 30px;
}