body {
    padding: 0;
    margin: 0;
    font-family: "thiccboi";
    /* background-color: #002569; */
    background-image: url('adbbackground.jpg'); /* Replace with your image URL */
    background-size: cover; /* Makes sure the image covers the whole background */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents repeating */
    color: white;
  }

  body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25); /* Adjust opacity (0 = fully transparent, 1 = fully black) */
    z-index: -1; /* Keeps it behind content */
}

  @media(max-width:768px) {
    body {
      background-position: 22.5% center;
    }
  }

  @media (max-width: 1024px) {
    body {
        background-position: 22.5% center;
    }
}
  #unity-container {
    position: absolute;
    
  }
  #unity-container.unity-desktop {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  #unity-container.unity-mobile {
    width: 100%;
    height: 100%;
  }
  #unity-canvas {
    background: #231f20;
  }
  .unity-mobile #unity-canvas {
    width: 100%;
    height: 100%;
  }
  #unity-loading-bar {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
      flex-direction: column; /* Stack elements vertically */
      align-items: center; /* Center children horizontally */
      text-align: center; /* Ensure text is centered */
      width: max-content; /* Prevent it from stretching */
  }
  #unity-logo {
  height: 30vh;
    width: 40vw;
    background: url("resultsreality.jpg") no-repeat center;
    background-size: contain;
    border-radius: 12px;
  }
  #error-logo {
    background: url("error.png") no-repeat center;
    background-size: contain;
    height:10vh;
    width: 10vw;
  }
  #unity-progress-bar-empty {
    width: 141px;
    height: 18px;
    margin-top: 10px;
    margin-left: 6.5px;
    background: url("progress-bar-empty-light.png") no-repeat center;
  }
  #unity-progress-bar-full {
    width: 100%;
    height: 2px;
    margin-bottom: 10%;
    background: url("progress-bar-full-dark.png") no-repeat;
    background-position: left;
    background-size: cover; /* Ensures it stretches properly */
    align-self: flex-start;
  }
  #unity-footer {
    position: relative;
  }
  .unity-mobile #unity-footer {
    display: none;
  }
  #unity-webgl-logo {
    float: left;
    width: 204px;
    height: 38px;
    background: url("webgl-logo.png") no-repeat center;
  }
  #unity-build-title {
    float: right;
    margin-right: 10px;
    line-height: 38px;
    font-family: arial;
    font-size: 18px;
  }
  #unity-fullscreen-button {
    float: right;
    width: 38px;
    height: 38px;
    background: url("fullscreen-button.png") no-repeat center;
  }
  #unity-warning {
    position: absolute;
    left: 50%;
    top: 5%;
    transform: translate(-50%);
    background: white;
    padding: 10px;
    display: none;
  }
  #poweredby {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    flex-direction:column;
  }
  #poweredby > div {
    display: flex;
    align-items: center; /* Align text and logo in the center */
    gap: 5px; /* Add spacing between elements */
}
  #litedev-logo {
    width: 32px;
    height: 32px;
    background: url("litedevlogo.png") no-repeat center;
    background-size: contain;
  }
  @font-face {
    font-family: "thiccboi";
    src: url("THICCCBOI-Regular.woff2") format("woff2");
    font-weight: normal;
  }
  
  @font-face {
    font-family: "thiccboi";
    src: url("THICCCBOI-Bold.woff2") format("woff2");
    font-weight: bold;
  }
  
  .bold-text {
    font-family: "thiccboi";
    font-weight: bold;
  }

  
