* {
  box-sizing: border-box;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
  -webkit-appearance: none;
  -webkit-touch-callout: none;
}
img
{
  pointer-events: none;
}
img:hover 
{
  cursor: default;
}
body {
  color: #fff;
  font-family: 'GraphicLGC Bold', Helvetica, Impact, sans-serif;
  height: 100vh;
  overflow: hidden;
  margin: 0;
  text-align: center;
  display: none;
}
@font-face
{
    font-family: "GraphicLGC Bold";
    font-display: swap;
    src: url("GraphikLCG-Bold.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}
#loadingScreen
{
  background-color: #dba15e;
  position: absolute; 
  width: 100%;
  height: 100%;
  z-index: 9999; 
  top: 0; 
  left: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.spinner {

  width: 10em;
  height:10em;
  border: 1em solid white;
  border-top: 1em solid #ad3b1b;
  border-radius:50%;
  animation: rotate 2s infinite ease-in-out;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.hide {
  opacity: 0;
}
.chgLevel p
{
  padding-top: -5em;
}
.board {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100vw;
  height: 100vh;
  background-color: #dba15e;
  box-shadow: -8px -8px 20px #525252, 10px 7px 20px #575757;
  overflow: hidden;
}
.btn {
  background-color: #ad3b1b;
  position: absolute;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn:not(.interactable)
{
  cursor: default;
}
.interactable:hover p
{
  -webkit-filter: url(#colorize-yellow);
  filter: url(#colorize-yellow);
}
.interactable:hover img
{
  -webkit-filter: url(#colorize-yellow);
  filter: url(#colorize-yellow);
}
#cardsField
{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.btn img
{
  width: 70%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 15%;
  transform: translateY(-50%);
}
.square img
{
  width: 100%;
  height: auto;
}
.mistakes p
{
  color: black;
}
body {
  background-color: #3e0031;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  margin: 0;
}
.row
{
  margin: 0;
}
.container
{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.square 
{
  background:#1d1d1d;
  box-shadow: 0 0 2px #000;
  transition: opacity 2s ease;
}
