<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Scalable canvas */

* {
  margin: 0;
  padding: 0;
}


div.fullWidth canvas {
  width: 100%;
  height: 100%;
}



/* Logo */

div#loadingBox {
  width: 100%;
  height: 50px;
  position: absolute;
  top: 80%;
  overflow:hidden;
  margin-top: -10px;
  text-align: center;
}

img#logo {
  height: calc(100% - 25px);
  content:url("logo.png");
}


/* Progress bar */

div#bgBar {
  position: absolute;
  width: 200px;
  margin-left: -100px;
  left: 50%;
  height: 10px;
  display: block;
  background-color: #616060;
}

div#progressBar {
  left: 50%;
  position: absolute;
  margin-left: -100px;
  width: 0px;
  height: 10px;
  background-color: #2796C4;
  border-radius: 2px;
}

div#bgBar {
  border-radius: 2px;
}

p#loadingInfo {
  color: #e6e6e6;
  letter-spacing: 1px;
  position: absolute;
  width: 100%;
  font-family: "Monaco", sans-serif;
  text-transform: uppercase;
  text-align: center;
  font-size: 10px;
  margin-top: 16px;
}
#LoadingGame{
	display: inline-block;
    position: absolute;
    width: 100%;
    background-color: white;
    height: 100%;
    overflow: hidden;
}
.page-bg{
	width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -o-filter: blur(15px);
    -ms-filter: blur(15px);
    filter: blur(15px);
    position: absolute;
    left: 0;
    top: 0;
    display: table;
}
#adTitle {
    width: 100%;
    height: 350px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
}
#adTitle .titleText {
    vertical-align: middle;
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    color: #FFF;
    font-size: 16px;
    line-height: 26px;
}
#adTitle img {
    border-radius: 10px;
    width: 250px;
    box-shadow: 1px 1px 5px black;
    transition: .1s;
    -webkit-transition: .1s;
}
#adTitle .titleText button {
    display: inline-block;
    background: #99c506;
    background: linear-gradient(#2EFE2E, #088A29);
    margin: 10px;
    padding: 15px 25px;
    border-radius: 10px;
    border: 2px solid #fff;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 1px 1px 5px black;
    transition: .1s;
    -webkit-transition: .1s;
}
#adTitle .titleText .GameNameText {
    vertical-align: middle;
    font-family: arial;
    color: #FFF;
    font-size: 18px;
    line-height: 45px;
    width: 100%;
    height: 45px;
    overflow: hidden;
    background: linear-gradient(to right,rgba(30,87,153,0) 0,rgba(0,0,0,.3) 50%,rgba(125,185,232,0) 100%);
}
</pre></body></html>