@import url("./variables.css");

body {
    background: var(--color4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    min-height: 100vh;
    height: fit-content;
}
.game-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
canvas {
    display: block;
}
.d-none {
    display: none;
}
a {
    cursor: pointer;
}
.temps,
.tempsGemme,
.tempsFlame {
    position: absolute;
}
.temps {
    color: white;
    background: none;
    transform: translate(0, 4rem);
}
.tempsGemme {
    color: white;
    background: none;
    transform: translate(7rem, -13.6rem);
}
.tempsFlame {
    color: white;
    background: none;
    transform: translate(0rem, -13.6rem);
}
.indicateurVie,
.indicateurLvl,
.indicateurLvldesc {
    position: absolute;
    transform: translate(25rem, -13.6rem);
}
.indicateurVie {
    transform: translate(15rem, -13.6rem);
}
.indicateurLvldesc {
    transform: translate(21.5rem, -13.6rem);
}