@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

body {
  padding: 0;
  margin: 0;

  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%), -webkit-linear-gradient(#77dfcd, #cf955e);
  min-height: 100vh;
  background-attachment: fixed;
}
#unity-container {
  position: absolute;
}
#unity-container.unity-desktop {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#unity-container.unity-mobile {
  position: fixed;
  width: 100%;
  height: 100%;
}
#unity-canvas {
  background: #428076;
}
.unity-mobile #unity-canvas {
  width: 100%;
  height: 100%;
}

#unity-loading-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
#unity-logo {
  width: 167px;
  height: 130px;
  background: url("Gatto.gif") no-repeat center;
}
#unity-progress-bar-empty {
  width: 141px;
  height: 18px;
  margin-top: 10px;
  margin-left: 6.5px;
  /* background: url("progress-bar-empty-dark.png") no-repeat center; */
  background-color: #cccccc;
  border-radius: 20px;
}
#unity-progress-bar-full {
  width: 0%;
  height: 18px;
  margin-top: 10px;
  /* background: url("progress-bar-full-dark.png") no-repeat center; */
  background-color: #cf955e;
  border-radius: 20px;
}
#unity-footer {
  position: relative;
}
.unity-mobile #unity-footer {
  display: none;
}
#unity-logo-title-footer {
  display: inline-block;
  width: 102px;
  height: 38px;
  background: url("logo-drimlab.png") no-repeat center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  vertical-align: middle;

  filter:
          drop-shadow( 1px  0px 0px rgba(0, 0, 0, 0.2))
          drop-shadow(-1px  0px 0px rgba(0, 0, 0, 0.2))
          drop-shadow( 0px  1px 0px rgba(0, 0, 0, 0.2))
          drop-shadow( 0px -1px 0px rgba(0, 0, 0, 0.2))
}
#unity-build-title {
  float: right;
  margin-right: 10px;
  line-height: 38px;
  /* font-size: 18px;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: var(--bs-light); */
}
#unity-fullscreen-button {
  cursor: pointer;
  float: right;
  width: 38px;
  height: 38px;
  background: url("fullScreen-book.png") no-repeat center;

  transition: transform 0.2s ease-in-out, filter 0.2s ease-in-out;
}

#unity-fullscreen-button:hover{
  /*background: #00eeff;
  border: 1px solid #00eeff;
  text-shadow: 0 0 5px #ffffff, 0 0 10 #ffffff, 0 0 20 #ffffff;
  box-shadow: 0 0 5px #00e1ff, 0 0 20 #00e1ff, 0 0 50 #00e1ff, 0 0 100px #00e1ff;*/
  transform: scale(1.2);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.9));
}

#unity-warning {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -25%);
  background: var(--bs-body-color);
  padding: 10px;
  display: none;
  border-radius: 1.5em;
}

#rotate-device {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 1.5rem;
  text-align: center;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  flex-direction: column;
}

#rotate-device div {
  font-size: 3rem;
  animation: spin 2s linear infinite;
}

#rotate-device p {
  margin-top: 1rem;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.main-title {
  text-align: center;
  /* font-size: 4em; */
  font-weight: 400;
  margin: 0 0 20px 0;
  text-shadow: 3px 2px 2px #333;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: var(--bs-light);
}
