*, *::before, *::after {
    box-sizing: border-box;
    font-family: Gothic Bold;
}

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

body {
   --hue: var(--hue-neutral);
    padding: 0;
    margin: 0;
    display: flex;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
    background-color: rgb(47, 105, 231);
    font-family: Georgia, 'Times New Roman', Times, serif;
    margin: 0;
}
p {
    background-color: rgb(238, 225, 218);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    

}


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

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

.container {
    width: 400px;
    max-width: 80%;
    background-color: aliceblue;
    border-radius: 5px;
    padding: 10px;
}

.btn-grid {
    display:grid;
    grid-template-columns: repeat(2, auto);
    gap: 20px;
    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: 5px;
    padding: 5px 10px;
    color: mintcream;
    outline: none;
}

.btn:hover {
border-color: rgb(19, 3, 19);
}
.btn.correct {
  --hue: var(--hue-correct);
  color: black;
}
.btn.wrong {
   --hue: var(--hue-wrong);
}
  
.start-btn, .next-btn {
    font-size: 1.5rem;
    font-weight: bold;
    padding: 10px 20px;
}

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

.hide {
    display:none;
}
