/* Basic resets */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; /* Prevent scrollbars on the main page body */
}

/* Unity container and canvas */
#unity-container {
  width: 100%;
  height: 100%;
  position: relative;
}
#unity-canvas {
  width: 100%;
  height: 100%;
  background: black; /* Or any other color you want behind the Unity content */
}

/* Cover screen while loading */
#loading-cover {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  /* You can make this a solid color or a background image */
  /* For a solid black: */
  /* background-color: black; */

  /* Or if you want an image background, un-comment below and put background.jpg in TemplateData: */
  background: url('background.png') center / cover no-repeat;

  /* Display the GIF in the center */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Container for your GIF */
#gif-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* The GIF image itself -- no rotation or special animation here */
#gif-img {
  max-width: 128px;
  max-height: 128px;
  height: auto;
  width: auto; 
}
