*{ cursor: url('img/cursor.png') 4 4, auto;
z-index: 1;}

body {
    background-image:linear-gradient(#1e253c,#ed6452);
    margin:0px;
    
    
}

body >* {

  font-family: "Bytesized", sans-serif;
   
 
}

.gauche img{
width: 90%;
max-width: 100%;
height: auto;
}

.lieu {
    font-size: 4em; 
    color: #ed6452;
    
    
}

.gauche-haut{
  display: flex;
}


.stats > *{
  color: #ffffff;
  font-size: 2.4em;
  display:grid;
  margin: 0px;
}

.gauche-bas img {
  width: 7%;
  height: auto;
}

.titre {
    color: #fff;
    font-size: 8em;
    font-weight: bold;
}

.game-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
}

.caseperso {
    display: flex;
    flex-direction: column;
    background-color: #1e253c;
    border: 20px solid #1e253c;
    
}

.perso{
    width: 100%;
    padding-top: 20%;
}



.time {
    color: #fff;
    font-size: 6em;
    font-weight: bold;
    padding-left: 30px;
    margin : 0px;
}

.top-bar {
  background-color:#ed6452;

  height: 40px;
  font-size: 0.5em;
  display: flex;
  justify-content: flex-start;
  align-items: center;
   padding: 9px;
}


html, body {
  height: 100%;
  margin: 0;
}

.game-container {
  position: relative;
  height: 100%;
  background: linear-gradient(180deg, #1e253c, #ed6452);
  background-size: 300% 300%;
  animation: animfond 3s ease-in-out infinite;
 
}

/* ====================== ANIMATION DU FOND ============================ */
@keyframes animfond {
  0% { background-position: 50% 0%; }
  50% { background-position: 50% 30%; }
  100% { background-position: 50% 0%; }
}


.particules {
  opacity:0;
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: float 15s linear infinite;
  z-index: 0;
}




@keyframes float {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  50%{
    opacity:1;
  }
  100% {
    transform: translateY(-200px);
    opacity: 0;
  }
}
