*, *::before, *::after {
    box-sizing: border-box;
    font-family: "Quicksand", sans-serif;
    font-weight: bold;
}

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

body {
    --hue: var(--hue-neutral);
    width: 100vw;
    height: 100vh;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: hsl(var(--hue), 100%, 20%);
}

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

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

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

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

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

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

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

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

.start-btn, .next-btn, .score-btn {
    font-size: 1.5rem;
    font-weight: bold;
    padding: 10px 20px;
}

.score-btn {
    background-color: hsl(276, 100%, 37%);
    border-color: hsl(276, 100%, 17%);
}

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

.hide{
    display: none;
}

.animation {
    width: 70vw;
    height: auto;
    margin: 10px 0;
}

.img-fluid {
    max-width: 100%;
    max-height: 50vh;
    height: auto;
}

.d-block {
    display: block !important;
}

.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
}