@import url("start.css");
@import url("gameover.css");
@import url("editor.css");
@import url("choose-level.css");
@import url("choose-figure.css");
@import url("test.css");
@import url("questions.css");
@import url("styles.css");
@import url("items+tiles.css");
@import url("player.css");

* {
    padding: 0;
    margin : 0;
}

body {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: #c8e1ff;
}

.scene-container {
    position:absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: hidden;
}


.hidden {
    display: none !important;
}

.invisible {
    visibility: hidden;
}


.screen {
    position:absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gamepad-help {
    width: 400px;
}

#start, #chooseFigure, #survey, #game, #gameover {
    cursor: none;
}