/* Palette: 
#F9EBEA
#F2D7D5
*/

* {
    user-select: none;
}

.flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#loader {
    font-size: 50px;
    color: white;
    background-color: black;
    justify-content: space-evenly;
}

#logo {
    width: 160px;
    height: 90px;
}

#bigContainer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
}

.littleScreen {
    width: 1200px;
    height: 600px;
    border: solid 3px white;
    background-color: #F9EBEA;
    overflow: hidden;
}

#gameScreen {
    display: none;
    background-image: url("../assets/images/fonds/in_game.png");
    justify-content: space-evenly;
}

#mainMenu {
    display: none;
    justify-content: space-evenly;
    background-image: url(../assets/images/fonds/menu.png);
}

#galerie {
    display: none;
    justify-content: space-evenly;
    background-image: url("../assets/images/fonds/cinema.png");
}

#choice {
    display: none;
}

#botsContainer {
    flex-direction: row;
    justify-content: space-around;
    width: 80%;
}

.bot {
    width: 128px;
    height: 128px;
    transform: width 0.1s, height 0.1s;
}

.bot:hover {
    width: 150px;
    height: 150px;
}

figcaption {
    font-size: 20px;
    width: 100%;
    text-align: center;
}

#logo {
    width: 200px;
    height: 200px
}

#back:hover {
    font-size: 30px !important;
}