@font-face {
    font-family: 'boot font';
    src: url('/fonts/Perfect DOS VGA 437.ttf');
    font-style: normal;
    font-weight: normal;
}

* {
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100vw;
    height: 100vh;
}

#app {
    background-color: black;
    height: 100%;
}

.ellipsis.animated::after {
    content: '...';
    /* Initial content, could be empty */
    display: inline-block;
    animation: dots 1.5s steps(3, end) infinite;
}

@keyframes dots {

    0%,
    20% {
        content: '';
    }

    40% {
        content: '.';
    }

    60% {
        content: '..';
    }

    80%,
    100% {
        content: '...';
    }
}

html,
body {
    overflow: hidden !important;
}