@font-face {
  font-family: documentFont;
  src: url(../font/TitanOne-Regular.ttf);
}
.document-font{
  font-family: documentFont, Verdana, Geneva, Tahoma, sans-serif;
}

/* Generic Styles */
.display-center{
  position:absolute;
  top:50% !important;
  left:50% !important;
  transform:translate(-50%,-50%);
  -ms-transform:translate(-50%,-50%)
}
.center{
  text-align: center;
}
.text-white{
  color:#fff;
}
.hard-shadow{
  text-shadow: 2px 2px 0px #093d4e;
}
.soft-shadow{
  text-shadow: 0px 0px 4px #000000;
}
.blurry-shadow{
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 1);
}
.drop-shadow{
  filter: drop-shadow(4 0 4.6rem rgba(0, 0, 0, 0.4));
}
.pulse {
  transform-origin: center;
  animation: pulse 3s infinite ease-in-out;
}
.shrink { transition: all .15s ease-in-out; }
.shrink:hover { transform: scale(0.95); }

/* Document Styles */
body, html {
  background: #000;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;

  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}
#mainContainer{
  width: 100%; 
  height: 100%; 
  background-color:#FFD0DB; 
  background-position: center;
  background-repeat: no-repeat;
}
#gameContainer {
  width: 100%;
  height: 100%;
  margin: auto;
}
#unity-canvas {
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  image-rendering: optimizeSpeed;
  image-rendering: -webkit-crisp-edges;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: optimize-contrast;
  image-rendering: pixelated;
  -ms-interpolation-mode: nearest-neighbor;
}
.main-bg {
  background-image: url("../img/main-bg.png");
  background-color: black;
  background-position: center;
  background-size: cover;
}
.colored-bg {
  background-image: url("../img/splash_background_blur_w_chars_1920x1080.png");
  background-color: black;
  background-position: center;
  background-size: cover;
}
.neb-fullScreenLayer{
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
}
#overlay h1{
  position: relative;
  top: 1vh;
  font-size: max(3vmax, 2rem);
  letter-spacing: 0.03em;
  font-weight: normal;
  transform: scale(1, 1.1);
  -webkit-transform: scale(1, 1.1); /* Safari and Chrome */
  -moz-transform: scale(1, 1.1); /* Firefox */
  -ms-transform: scale(1, 1.1); /* IE 9+ */
  -o-transform: scale(1, 1.1); /* Opera */
}
#overlay #logo{
  width: min(25vmax, 256px);
  position: absolute;
  top: 20px;
  left: 20px;
}
#giftContainer
{
  width: min(25vmax, 256px);
  position: absolute;
  right: 0;
  bottom: 150px;
}
#giftContainer img
{
image: url("../img/gift.png");	
  width: 100%;
  height: 100%;
}
.button-container{
  display: flex;
  flex-direction:column;
  min-width: fit-content;
  align-items: center;
  justify-content: space-around;
  position:fixed;
  bottom: 10vh;
  width: 100%;
}
/* Playbutton
#playButton {
  min-width: 40vw;
  height: 64px; 
  border-style: solid;
  border-image: url(../img/play_button_blue.png) round;
  border-image-slice: 70 fill;
  border-image-width: 80px;
  filter: brightness(1.1);
  cursor: pointer;
}
 */
#playButton {
  min-width: 35vw;
  height: 64px; 
  border-style: solid;
  border-image: url(../img/play_button_blue.png) round;
  border-image-slice: 70 fill;
  border-image-width: 80px;
  filter: brightness(1.1);
  cursor: pointer;
  text-align: center;
}

#playButtonBrowserIcon {
  position: absolute;
  top: 10%;;
  right: 86%;
}

#downloadButtonBrowserIcon {
  content: url('../img/download.png');
  position: absolute;
  top: 10%;;
  right: 86%;
}
#downloadButton {
  min-width: 32vw;
  height: 64px; 
  border-style: solid;
  border-image: url(../img/play_button_green.png) round;
  border-image-slice: 70 fill;
  border-image-width: 80px;
  filter: brightness(1.1);
  cursor: pointer;
}
.button-label{
  font-size: xx-large;
  line-height: 2;
}
.button-browser-logo{
  width: 40px;
  height: 40px;
  background-position: left;
  right: 55px;
}
/* 
.button-text-with-logo{
  position: absolute;
  top: 40px;
  right: 0;
  width: 200px;
  height: 100px;
  border: 3px solid #73AD21;
}*/

.full-btn-img{
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
#loadingBar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 50px;
}

/* Style nebula features */
.neb-loading-bar-font{
  color:#fff;
  font-family: documentFont, Verdana, Geneva, Tahoma, sans-serif;
  text-shadow: 0px 0px 5px #000000;
}
.neb-loading-bar-label{
  position: relative;
  top: -50px;
  font-size: x-large;
  line-height: 2;
  text-align: center;
}
.progress {
  width: 500px;
  height: 50px;
  border-image: url(../img/loading_bar_bg.png) round;
  border-image-slice: 55 55 55 55 fill;
  border-image-width: 110px;
}
.progress .full{
  position: relative;
  min-width: 50px;
  top: -1px;
  left: -1px;
  max-width: 500px;
  height: 52px;
  border-image: url(../img/loading_bar_fill.png) round;
  border-image-slice: 55 55 55 55 fill;
  border-image-width: 35px;
  transform-origin: top left;
  -webkit-transition: .5s ease-out;
  -moz-transition: .5s ease-out;
  -o-transition: .5s ease-out;
  transition: .5s ease-out;
  animation: blink 1s infinite;
}

.neb-footer-background{
  background-color: rgba(255, 255, 255, 0.6);
}
.neb-footer-text, .neb-footer-text:hover
{
  color: rgb(20, 2, 87);
}

@keyframes pulse {
  0% {
      transform: scale(.98);
  }

  50% {
      transform: scale(0.93);
  }

  100% {
      transform: scale(.98);
  }
}
