@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;
}
canvas {
    display: block;
    background: url("../assets/images/backgrounds/forest.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.content {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-around;
}
.contentSelectionneur {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin: 0 30px;
}
.menu {
    position: relative;
}
.selecteur {
    width: 72px;
    height: 72px;
    border: solid 4px red;
    position: absolute;
    top: -4px;
    left: -4px;
}
.resTable {
    margin: 2rem;
    height: 40px;
    width: 500px;
    /* LIGNE À ENLEVER POUR CRÉER DES NOUVEAUX NIVEAUX */
    display: none;
}