@import url('/css/global.css');

#root {
    z-index: 1000;
    height: 100%;
    background-color: black;
}
html {
    background-color: black;
}
body {
    background-color: black;
    height: 100%;
}

.splash {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 24px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    
    z-index: 1000;

    background-color: black;
    color: white;

    .splash-title {
        font-size: 64px;
    }

    .splash-desc {
        font-size: 16px;
    }
}