@import "fonts/stylesheet.css";
html, body {
  overflow: hidden;
}
html,
input {
  font-family: 'munrosmall', Tahoma, arial;
  -webkit-font-smoothing: none;
  font-size: 22px;
}
body,    
:not(:root):fullscreen::backdrop {
  background: #000;
}
body {
  position: relative;
  color: #fff;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
body * {
  -webkit-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -ms-user-select: none;
}

canvas {
  image-rendering: -webkit-optimize-contrast; /* webkit */
  image-rendering: -moz-crisp-edges /* Firefox */ 
}

#game-container {
  display: block;
  position: relative;
  margin: 0 auto;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background: #000;
  cursor: none;
}

/* first child of the game-container */ 
#webgl-canvas {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* third child of the game-container */ 
#loading-screen-image {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* second child of the game-container */ 
#hud-canvas {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: none;
}



#fullscreen {
  z-index: 3;
  cursor: pointer;
}


/* ! REMOVE ========== */
a {
  color: #baba5e;
  text-decoration: none;
}
a:hover,
a:active {
  text-decoration: underline;
}

#fullscreen {
  position: absolute;
  bottom: 0;
  right: 0;
}

.achievement-card-container {
  position: fixed;
  top: 0;
  right: 0;
  padding: 2px;
  margin: 10px;  
  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  z-index: 4;
}

.achievement-card {
  width: 250px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  background-color: gray;
  padding: 8px;
  border-radius: 4px;
  margin: 5px;
}

.achievement-card-content-small-heading {
  margin: 0;
  font-size: 18px;
  font-weight: normal;
}

.achievement-card-content-heading {
  margin: 0;
  font-size: 24px;
  font-weight: normal;
}

.achievement-card-content-description {
  margin: 0;
  font-size: 18px;
  font-weight: normal;
}

img.achievement-card-icon {
  width: 64px;
  border-radius: 2px;
  height: 64px;
}

.achievement-card-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-left: 10px;
}