:root {
  --primary-text-color: #d6d6d6;
  --highlight-text-color: #000000;
  --primary-bg-color: #13151F;  
  --primary-font-size: 60px;
}
@font-face {
    font-family: CustomFont;
    src: url(./Fonts/Amore\Christmas.otf); /* url of the font */
  }
  /* .lexend-<uniquifier> {
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
  } */
  
.MainTitle
{
    color: blue;
    font-family: CustomFont;
    font-size: 70px;
    margin: auto;
    width: 50%;
}
#Body
{
  background-color: var(--primary-bg-color);

}

#gl-canvas {
  display: block;
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;

  z-index: 5;
}
#Gif {
  display: block;
  position: fixed;
  top: 20vh;
  left: 25vw;
  width:50vw;
  height:50vh / 50vw; 
  image-rendering: pixelated;
  transform: translateY(-100px);
  z-index: 6;
}
#LoadTxt{
  display: block;
  position: fixed;
  top: 50vh;
  left: 18vw;
  font-size: 20vw;  
  color: white;
  z-index: 6;
}
#PlayMusic{
  position: fixed;
    top: 0px;
    left: 0px;
    font-size: max(4vw, 4vh);
    width: min(50vw, 40%);
    height: 15vw;
    color: white;
    opacity: 0;
    background-color: #00000055;
    z-index: 6;
}
#GoHome{
  position: fixed;
    top: 0px;
    left: 0px;
    font-size: max(4vw, 4vh);
    width: min(50vw, 40%);
    height: 10vw;
    color: white;
    opacity: 0;
    background-color: #00000055;
    z-index: 6;
}
#ExitCam
{
  position: fixed;
  top: 0px;
  left: 0px;
  font-size: max(4vw, 4vh);
  width: min(50vw, 40%);
  height: 10vw;
  color: white;
  opacity: 0;
  background-color: #00000055;
  z-index: 7;
}

#MobileInfo
{
  display: block;
  position: fixed;
  top: 50vh;
  left: 10vw;
  font-size: 10vw;  
  color: white;
  z-index: 6;
  opacity: 0;
}


html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; /* optional, prevents scrollbars */
}

#Body {
  background-color: var(--primary-bg-color);
  width: 100%;
  height: 100%;
}

.BoxText{
  position: relative;
  color: var(--primary-text-color);
  font-size: var(--primary-font-size);
  pointer-events: none; 
  float: top;
  z-index: 4;
  font-family: CustomFont;

}
/* #Box{
  position: relative;
  width: 100%;
  height: 100%;
  background-color: powderblue;
  z-index: 6;
} */
.InnerBox{
  position: absolute;
  width:300px;
  height: 90px;
  background-color: #645268;
  z-index: 3;
  
}
.Pannel{
  position: absolute;
  width:1250px;
  height: 400px;
  left: 75px;
  top: 150px;
  background-color: #17283a;
  z-index: 1;
}
#b1{
  width: 400px;
  top: 100px;
  left: 100px;
}
#inb1{
  width:400px;
}
#bTxt1{
  text-align: left;
  top: 10%;
  margin-left: 20px;
}
#b2{
  width: 400px;
  top: 100px;
  left: 900px;
}
#inb2{
  width:390px;
}
#bTxt2{
  text-align: left;
  top: 10%;
  margin-left: 100px;
}
#b3{
  top: 500px;
  left: 100px;
}
#inb3{
  left: 10px;
}
#bTxt3{
  text-align: left;
  top: 10%;
  margin-left: 20px;
}
#b4{
  top: 500px;
  left: 1000px;
}
#inb4{
  right: 10px;
}
#bTxt4{
  text-align: left;
  top: 10%;
  margin-left: 70px;
}
.Box:hover{
  background-color: #B08A9E;
}

.Box:hover .InnerBox{
  background-color: #FFD9E3;
}
.Box:hover .BoxText {
  color: var(--highlight-text-color);
}

.navigation-boxes a {
  text-decoration: none;
}


#canvas-container {
  position: relative;
  width: 100%;
  height: 100vh;  /* fill the viewport height */
  display: block; /* change from inline-block */
}
#PlayPause {
  position: absolute;
  bottom: 0px;        /* distance from bottom of canvas */
  left: 50%;
  transform: translateX(-50%); /* horizontally centered */
  z-index: 10;         /* sits on top of the canvas */
}






