#appPage{
  /* Affichage des pages les unes sur les autres sur toute la hauteur et toute la largeur */
  position: absolute;
  display: flex;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#landingBrand{
  z-index: 1000;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}
#landingBrand img{
  width: 70px;
  height: 70px;
  margin-right: 10px;
}
#landingBrand span{
  font-size: 4rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 2px #000;
  margin-left: 10px;
  letter-spacing: 5px;
  font-family: Arial, Helvetica, sans-serif
}

#loading-container{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100%; width: 100%;
  background-color: rgb(1,1,1, 0.5);
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-shadow: 2px 2px 2px #000;
  position: absolute;
  z-index: 1000;
}

#message-elem-list{
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  height: 60%; width: 100%;
}
/* --------------------------- LOADING ELEMENTS ------------------------- */
.loading-elem{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 50px; width: 100%;
  color: var(--grey-500);
  font-size: 1rem;

  /* transform: translateY(100%);
  transition: all 0.5s ease-out; */
}
.loading-elem-last{
  display: flex; 
  color: var(--primary-color);
  font-size: 1.5rem;

  /* transform: translateY(0); */
}

/* ------------------------------ ERROR ELEMENT -------------------------- */
.error-elem{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 50px; width: 100%;
  color: var(--grey-500);
  font-size: 1rem;
}
.error-elem-last{
  display: flex; 
  color: var(--error-color);
  font-size: 1.5rem;
}


#loading-spinner-container{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%; width: 100%;
}
#loading-spinner{
  width: 50px;
  height: 50px;
  border: 8px solid var(--grey-500); /* Light grey */
  border-top: 8px solid var(--primary-color); /* Primary color */
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* #loading-screen{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%; width: 100%;
  background-color: rgb(1,1,1, 0.5);
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-shadow: 2px 2px 2px #000;
  position: absolute;
  z-index: 1000;
} */
#mainContainer{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  transition: background-color 2s ease-out;
  /* Problème de mise en forme en mode Mobile */
  width: 100%;
  /* width: calc(100% - 240px); */

}
.cmd{ /* voir command.css */ }
.text-to-resize {
  font-size: calc(1rem + 2vw); /* Vous pouvez ajuster cela selon vos besoins */
  /* max-font-size: 36px; Ceci n'est pas une propriété CSS valide, c'est juste pour illustrer l'idée */
}




/* .game-container canvas {
  image-rendering: pixelated;
  min-width: none;
} */

/* .hidden {
  display: none;
} */

/* .game-container-wrapper {
  position: absolute;
  height: 100%;
  animation: cmdDirection 1s forwards;
} */

/* Command direction */
/* @keyframes cmdDirection {
  0% {transform: scale(0); opacity: 0; }
  50% {transform: scale(1); opacity: 0.3; }
  100% {transform: scale(1); opacity: 1; }
} */

/* .game-container {
  display: flex;
  flex-direction: row;
  align-items: center;
   background: #d9f4ff;
  width: 100vw;
  height: 100vh;
  outline: 1px solid #fff;
  transition: background-color 2s ease-out;
} */

/* .main{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
} */
