@import url(https://db.onlinewebfonts.com/c/8e4c3e78e30cb148760d9ef0146d52d9?family=Fizzy+Soda);
@import url(https://db.onlinewebfonts.com/c/2206d6cc490084998d531e8c1b2cbb4a?family=Druk+Wide+Bold); 

html {
    font-family: sans-serif;
}

.element {
    cursor: grab;
}
.follow-mouse {
    cursor: grabbing;
}
*:has(.follow-mouse) {
    cursor:grabbing;
}
#points {
    font-family: "Fizzy Soda"; 
}
#question {
    font-family: "Druk Wide Bold";
}
#menu {
    color: white;
    padding: 10px;
    width: 30%;
    height: 30%;
    display:none;
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%);
    z-index: 1000;
}
#menu.show {
    display: block;
}
#place {
    background: #0d6efd;
    color: white;
    padding: 10px;
    -webkit-transition: background-color 0.5s ease-out;
    -moz-transition: background-color 0.5s ease-out;
    -o-transition: background-color 0.5s ease-out;
    transition: background-color 0.5s ease-out;
}
#place.correct {
    background: #198754;
}
#place.incorrect {
    background: #dc3545;
}
#mainGameContainer {
    position: relative;
}