*, *::before, *::after {
    box-sizing: border-box;
    font-family: 'Tomorrow', sans-serif;
}

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

body {
    padding: 0;
    margin: 0;
    background-image: url(./sky.gif);
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

.container {
    width: 800px;
    max-width: 80%;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 0 10px 2px;

}
#questions {
    font-size: 20px;
    font-weight: bold;
    display: flex;
    justify-content: center;
}

.btn-grid {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 10px;
    margin: 20px 40px;
}

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

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

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

.start, .next, .score, p {
    font-size: 1.5rem;
    font-weight: bold;
    padding: 10px 10px;
    margin: 0px 10px 10px 10px;
}
.controls {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hide{
    display: none;
}
