<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;
}
.template{
	position: absolute; 
    top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}


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



/* Logo */

div#loadingBox {
  width: 100%;
  height: 50px;
  position: absolute;
  top: 80%;
  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;
}
div.info {
    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: -103px;
}
.webgl-content #unityContainer .logo-link {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: 0px;
    width: 350px;
    height: 300px;
    transform: translate(-50%,-50%);
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}
</pre></body></html>