@import url('./components/header.css');
@import url('./components/levels.css');
@import url('./components/stars.css');
@import url('./game.css');

*{
    margin: 0;
    box-sizing: border-box;
}

.mainContainer{
    background: url("../img/bg/bg_titleScreen_mobile.png") var(--background);
    background-position: bottom; 
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100vh;
}

.mainContainer.game{
    background: url("../img/bg/bg_game_mobile.png") var(--background);
    background-position: bottom; 
    background-repeat: no-repeat;
    background-size: contain;
}

#confetti-canvas{
    position: absolute;
    top: 0;
}

