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

body {
    background-color: black;
}
.splash {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    user-select: none;
}

.splash span {
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 100px;
    opacity: .8;
    user-select: none;
}

.home {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
    user-select: none;
}

#my_canvas {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: none;
    user-select: none;
}

@media (max-width: 450px) {
    .splash span {
        color: #fff;
        font-family: 'Orbitron', sans-serif;
        font-size: 50px;
        opacity: .8;
    }
}