* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  margin: 30px 0;
  min-height: calc(100vh - 30px);
  background: radial-gradient(circle at top left, rgba(40, 40, 40,1) 0%, rgba(20, 20, 20,1) 100%);
  color: rgb(177, 177, 177);
  font-family: 'Orbitron', sans-serif;
  text-align: center;
  /* overflow: hidden; */
}
p {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 50px;
}
a {
  color: white;
}
h1 {
  font-size: 40px;
  margin: 30px 0;
}
h4 {
  font-size: 18px;
  margin: 30px 0;
}
#unity-container.unity-desktop {
  margin: auto;
  position: relative;
}
#unity-container.unity-mobile {
  width: 100%;
  height: 100%;
}
#unity-canvas {
  background: #231f20;
  box-shadow: 10px 10px 30px rgba(0,0,0,1);
  border-radius: 10px;
}
.unity-mobile #unity-canvas {
  width: 100%;
  height: 100%;
}
#unity-loading-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
#unity-progress-bar-empty {
  width: 500px;
  height: 6px;
  border-radius: 3px;
  overflow: hidden;
  background: grey;
}
#unity-progress-bar-full {
  width: 0%;
  height: 6px;
  background: lime;
}
#unity-footer {
  position: relative;
}
.unity-mobile #unity-footer {
  display: none;
}
#unity-build-title {
  float: right;
  margin-right: 10px;
  line-height: 38px;
  font-family: arial;
  font-size: 18px;
}
#unity-fullscreen-button {
  position: absolute;
  bottom: 20px;
  margin-right: 50%;
  right: -460px;
  filter: grayscale(1) brightness(50%);
  width: 35px;
  height: 35px;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 3px 3px 10px rgba(0,0,0,0.5);
  background: url('fullscreen-button.png') no-repeat center;
  transition: all 0.1s;
}
#unity-fullscreen-button:hover {
  /* transform: scale(1.05); */
  filter: grayscale(1) brightness(60%);
  transition: all 0.2s;
}
#unity-warning {
  position: absolute;
  left: 50%;
  top: 5%;
  transform: translate(-50%);
  background: white;
  padding: 10px;
  display: none;
}

::-webkit-scrollbar {
  width: var(--scrollbar-width);
}

::-webkit-scrollbar-button {
  height: 0;
}

::-webkit-scrollbar-thumb {
  background: #414141;
  border-radius: 0.3rem;
}

/* ::-webkit-scrollbar-thumb:hover {
  
} */

/* ::-webkit-scrollbar-thumb:active {
  
} */

::-webkit-scrollbar-track {        
  background: #5d5d5d;
  border-radius: 0;
}

::-webkit-scrollbar-corner {
  background: transparent;
}