@font-face {
  font-family: "Draeger Sans Bold";
  src: url("../fonts/DraegerSansBold.ttf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Draeger Sans Light";
  src: url("../fonts/DraegerSansTabLight.ttf");
  font-weight: normal;
  font-style: normal;
}

[v-cloak] {
  display: none;
}

button {
  background: none;
  border: none;
}

button:focus {
  outline: none;
}

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.fade-in {
  opacity:0;
  animation: fade-in ease-in .5s;
  animation-fill-mode:forwards;
}

@keyframes fade-out {
  from { opacity: 1; }
  to   { opacity: 0; }
}

.fade-out {
  opacity:0;
  animation: fade-out ease-in .5s;
  animation-fill-mode:forwards;
}

html {
  --background: #2A2342;
  --footer-background: #201936;
  --footer-height: 70px;
  --button-hover-color: #BB464B;
  --button-hover-hover: #e0684b;
  --button-hover-background:  #162D3A;
  --button-grey-color: #4c4e4d;
  --font-size: 20px;
}

html, body, #root {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  font-size: var(--font-size);
}

body {
  background-image: url(../images/background@1x.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  font-family: "Draeger Sans Bold";
}

body.index {
  background-color: rgb(42, 35, 66);
}

@media
(-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    /* Retina-specific stuff here */

  body {
    background-image: url(../images/background.jpg);
  }
}

img {
  max-width: 100%;
}

.hidden {
  display: none !important;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

#click-interceptor {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  top:0;
  left:0;
}

#canvasZone {
  display: block;
  padding: 0;
  margin: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

#renderCanvas {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  touch-action: none;
  -ms-touch-action: none;
  display: block;
}

.footer, #droptext {
  display: none;
}
