@import "colors.css";
@import "mobile.css";

body,
html {
    margin: 0;
    font-family: 'Sora', 'Roboto', sans-serif;
    -webkit-tap-highlight-color: transparent;
    text-rendering: geometricprecision;
    shape-rendering: geometricprecision;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    background: var(--black);
}

main {
    max-width: 100vw;
    max-height: 100vh;
    display: block;
    margin: auto;
}

.hero-video {
    height: 100vh;
    width: 100vw;
    object-fit: cover;
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    overflow: hidden;
}

.hero-video video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.black-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: black;
    opacity: 50%;
    z-index: 0;
}

.body-inner {
    max-width: 80vw;
    height: 100vh;
    margin: auto;
    display: flex;
    z-index: 0;
    position: relative;
}

.temporary-splash-logo {
    max-width: 130px;
}

.temporary-splash-logo img {
    width: 100%;
}

.center-splash {
    margin: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.temp-text {
    color: white;
    text-align: center;
}