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

#root {
    z-index: 1000;
    height: 100%;
}

body {
    background-color: var(--primary);
    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: var(--primary);
    color: var(--white);

    .splash-title {
        font-size: 64px;
        font-family: var(--star-bold);
    }

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

.navbar, .header {
    display: none !important;
}