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

html {
    scrollbar-width: none;  /* Firefox */
    -ms-overflow-style: none;  /* IE e Edge */
}

html::-webkit-scrollbar {
    display: none;
}

body {
    font-family: 'Orbitron', sans-serif;
    overflow: auto;
}

/* SPLASH SCREEN */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ff00ff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    overflow: hidden;
}

#splash-gif-container {
    position: relative;
    width: 80vmin;
    height: 80vmin;
    display: flex;
    justify-content: center;
    align-items: center;
}

#splash-gif {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* GAME CONTAINER */
#game-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
}

/* CUBE 3D */
#three-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
}
