@font-face {
    font-family:"meatball";
    src:url("../shared/fonts/ll") format("woff2");
    font-display:auto;font-style:normal;font-weight:400;
    }
    

body {
    margin: 0;
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
    background-color: black;
    cursor: pointer;
}

#space {
    font-family: "meatball", sans-serif;
    font-size: 64pt;
    padding-bottom: 300px;
    line-height: 90px;
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    color: rgba(255, 255, 255, 1);
    user-select: none;
    text-align: center;
    text-shadow: 1px 1px 5px black;
    display: none;
}

#video {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    margin: 0 auto;
    z-index: -1;
}

.fadein {
    animation: fadein 3s ease;
}

@keyframes fadein {
    0% {
        opacity: 0;
        text-shadow: 1px 1px 5px rgba(0, 0, 0, 0);
    }
    100% {
        opacity: 1;
        text-shadow: 1px 1px 5px black;
    }
}

a {
    color: #cccccc;
    text-decoration: none;
}